-
-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Integration with the Symbols View in Atom #279
Comments
It may be, I'll have to investigate this further to see if I can link suggestions from the core to Atom's symbol search package. It depends on whether this package exposes a service that I can hook into with my own suggestions, which will then replace the default ctags suggestions (which don't always seem to work that well). |
I'd love to see that as well. @Gert-dev: Are you already working on this, or looking for contributions? |
@tillkruss It is not something I'm working on at the moment, but functionality I am interested in having (along with tons of other features and enhancements you'll find scattered across all the issues on the core and package repositories that I all want to have and write, if only I had infinite time 😄). I've taken a quick gander at In case anyone is looking to implement this (or any new feature like this), I'd be happy to provide guidelines on how to do it. In any case, it'd be most interesting to add this functionality to the core (i.e. implement it in PHP) and then just provide a list of the symbols back to the base package in Atom. Atom could then handle showing the suggestions in a fuzzy finder dialog (or send the requests to a symbol viewer package via a service, if one exists or is created). |
FYI, I've created this ticket in the core to track progress on it. Also, this no longer has to wait for symbols-view, as atom-ide-ui now has an LSP-compliant way to do this. |
It's coming 🎉 ... well, "it" is not really correct, as this ticket was originally about the Atom I'm still going to close this issue since, despite the efforts of @tillkruss, the If they do provide one in the future, I'd be interested in adding it, but the way things are going now, I suspect we'd have more chance of atom-ide-ui adding a shortcut to jump to the filter input field on the outline view than symbols-view adding a service. |
Jumping to any symbol in the project doesn't appear to be possible currently because the package doesn't use ctags and therefore doesn't populate the project symbols list (
Symbols View: Toggle Project Symbols
).Would it be possible to use PHP Integrator's list of project symbols to populate this list so it's possible to quickly jump to any symbol in the project?
The text was updated successfully, but these errors were encountered: