Skip to content

Commit

Permalink
Misc. (#237)
Browse files Browse the repository at this point in the history
* Remove debug console message

* Update readme
  • Loading branch information
rvanasa authored Aug 16, 2023
1 parent fc18a17 commit 63d634e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 15 deletions.
14 changes: 0 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/server/navigation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down

0 comments on commit 63d634e

Please sign in to comment.