-
Notifications
You must be signed in to change notification settings - Fork 57
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
Fuzzy search for symbols #195
Comments
So you mean as an auto complete feature when you are not sure about the routines name? Sounds pretty good for me. For now I am using the VSC symbol search or overall search but this would be different level of convenience. |
One case is when I'm unsure or when I make a typo. The most annoying for me personally is underscores in the routine names. It would be quicker to skip those in the search. Just to make sure that I'm not missing something (I'm using ST keybinding. Not sure if those are VSC defaults too)
The last one is provided by fortran-language-server, right? |
I just realized: the autocomplete is already fine in this regard. It seems like only the global Go to symbol would be affected. |
The functions you mentioned are provided by VCS itself correct and supporting fuzzy search. |
In Sublime Text the goto symbol feature allows for fuzzy searching. So if I'm looking for
subroutine this_amazing_routine
the following search terms will all find it:In VSCode - as I understand it - this would be supported if the language server does (microsoft/vscode#33746). This appears to already be implemented in the python-language-server (microsoft/python-language-server#697) so I hope this shouldn't be too difficult to implement.
Would this be an appreciated feature? I don't have any experience with the LSP but would be willing to look into it unless someone else already has this on their roadmap.
The text was updated successfully, but these errors were encountered: