vscode-nushell-lang
vscode-nushell-lang copied to clipboard
Variables defined as `|<variable>|` are not suggested inside blocks

No $it suggested
This may require changes to nushell's completion call. Or maybe some fancy typescript to append to what nushell returns.
Thinking more about this, our completions in the extension work the same way the completions work in nushell (i think). What that means is that if you can't get the completions you're looking for in the nushell repl, you won't get them in the extension. Vice-versa, if you get the completions in the repl, we should be able to make them work in the extension.
I think it's the right way to develop completions, to keep them consistent.