vscode-nushell-lang
vscode-nushell-lang copied to clipboard
A Nushell grammar for Visual Studio Code with IDE support
It looks like the LSP server allows refactorings, like rename, can we have them enabled for the VSCode plugin?
There has not been a new release since Sep 23, 2024, with 8 commits since then. Maybe a new release is due?
the plugin doesnt seem to support/ follow NU_LIB_DIRS. idk if this is possible to fix
At the moment, we can write ```nu $env.foo = $env.bar = "baz" ``` and even ```nu let $foo = let $bar = "baz" ``` without any warning, but the resulting...
given the following code ``` def foo-bar [] { } def baz [] { foo-bar } ``` in the `foo-bar` call inside `baz`, 1) Goto Definition on the `foo` links...