From 63d634e743b4973105b9dcab27ee9c1c90f37dc8 Mon Sep 17 00:00:00 2001 From: Ryan Vandersmith Date: Wed, 16 Aug 2023 15:40:41 -0600 Subject: [PATCH] Misc. (#237) * Remove debug console message * Update readme --- README.md | 14 -------------- src/server/navigation.ts | 2 +- 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/README.md b/README.md index 5fbc7d6..3b53ec9 100644 --- a/README.md +++ b/README.md @@ -72,20 +72,6 @@ If you want VS Code to automatically format Motoko files on save, consider addin } ``` -## Recent Changes - -Projects using `dfx >= 0.11.1` use a new, experimental language server. - -To continue using the original language server, you can modify your `dfx.json` file to use version `0.11.0` or earlier: - -```json -{ - "dfx": "0.11.0" -} -``` - -If you encounter any bugs, please [open a GitHub issue](https://github.com/dfinity/vscode-motoko/issues) with steps to reproduce so that we can fix the problem for everyone. - ## Contributing ### Set up your local development environment: diff --git a/src/server/navigation.ts b/src/server/navigation.ts index 84b048b..9eb1bb7 100644 --- a/src/server/navigation.ts +++ b/src/server/navigation.ts @@ -417,7 +417,7 @@ function searchObject( // Skip everything except `Node` values continue; } - console.log('Searching:', search.name, scope.name, arg.name); //// + // console.log('Searching:', search.name, scope.name, arg.name); let definition: Definition | undefined; if (search.type === 'variable') { definition =