SUMMARY It would be awesome to be able to navigate the project's LSP symbols (functions, classes, etc) through the Quick Open (ctrl+alt+o) dialog, as well as bookmarks. Maybe the way forward for this would be to make QO pluggable, so the LSP and bookmark plugins can register models or callbacks for it.
We have a different shortcut for symbols, try (ctrl+alt+p)
Thanks, I didn't know that one. However it works a bit different to what I'm proposing, since it only lists symbols in the current document rather than the entire project
> it only lists symbols in the current document rather than the entire project It should list the entire project's symbols. If its not doing that then check the lsp server that you are using. We just show whatever the server sends us. The dialog shows up empty and symbols start showing up once you start typing. If it already has symbols then perhaps you are seeing a different dialog, probably from the CTags plugin (which also has a global search Ctrl+Shift+P).
Sorry for the delay. Just tested this. It does work the Typescript server. I couldn't get anything from Dart or Pyright (but that's a custom config anyways). I guess that part of this request is done, even if it is with a different shortcut.
Works with dart lsp here (tried with a flutter project I work on, symbols appear after typing 2 or more characters).