Add navigate to symbols
This plugin does not provide a way to find or navigate to symbols if you know their name.
When I use the go to any bar with # or @ to find a symbol in the whole project or in the current file, there are no symbols provided.
If you point me to the documentation of th VSCode API and the place to do it in this plugin maybe I can implement it myself, but I need some guidance here.
Can you give an example of the feature you are looking for in other extensions? I think you're looking for workspace symbols and/or document symbols
I think you're looking for workspace symbols and/or document symbols
Yes, that's what I'm looking for. Something like this:

Bumping this. It could be really cool to be able to navigate to our variables or functions declarations.
@ seems to mostly work for me in terms of finding variable/function names when I'm editing a file.
Doesn't seem to catch variables that were destructured though, like it won't pick up foo or setFoo in:
let (foo, setFoo) = React.useState(() => false)