rhaiscript / vscode-rhai

Rhai language support for Visual Studio Code.
https://marketplace.visualstudio.com/items?itemName=rhaiscript.vscode-rhai
Mozilla Public License 2.0
19 stars 0 forks source link

Add Outline pane support #4

Open RazrFalcon opened 2 years ago

RazrFalcon commented 2 years ago

It would be nice to see a list of functions in the Outline pane.

schungx commented 2 years ago

Unfortunately vscode-rhai only has syntax highlighting for now... It doesn't include a language server nor a parser...

RazrFalcon commented 2 years ago

I understand. I'm not sure how hard is to actually implement this. Just a nice thing to have.

schungx commented 2 years ago

That would require a full-blown language server which parses the Rhai scripts... a nice thing to have, yes, but not trivial to implement.