Does not work on vscode remote ssh in rust
kigawas opened this issue · 1 comments
kigawas commented
Does not work on vscode remote ssh in rust
ztlpn commented
Changing the extension kind to ui
as documented here fixed the issue for me.
This can be done by the user:
- Uninstall the extension on the remote host and install it locally
- Add the following to
settings.json
:
{
"remote.extensionKind": {
"georgewfraser.vscode-tree-sitter": "ui"
}
}
- Reload VSCode
And probably should be done in package.json
.