-
Notifications
You must be signed in to change notification settings - Fork 30k
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
Allow fuzzy result on searching symbol in file #62435
Comments
Additionally, if there are symbols like below, If, search with 'r' If, search with 'rw' now, the problem is following. if, search with 'rf' example2) let symbols below, i) type 'rd' ii) type 'rf' It's bad, there is no requestFreeTextSearchResults. iii) type 'rft' or 'ft' or 'ftsr' iv) type 'free'
I hope to improve VSC's fuzzy search. Thanks. |
Add some symbols on top like below search with 'requestFree' or even with full matching as 'requestFreeTextSearchResults'
### Sorry, There is syntax error, so I fixed it and can find the symbol. I tested it on code-insiders_1.31.0-1547187546_amd64.deb |
This is now actually working. Since a few months outline uses the same fuzzy score algorithm IntelliSense sense does and the samples should you have listed should now work. please file individual issues for cases that don't work well. Happy Coding |
1.28.2
Ubuntu Gnome 16.04.5 (x64)
Steps to Reproduce:
I search very often a symbol in current active file using by ctrl+shift+o.
I noticed that takes some inaccurate results than Sublime Text in cases like below.
symbols with Under and Upper case naming
example 1)
onSomeHandle()
onAnotherSomeHandle()
let search with words such as 'osh' using by ctrl+shift+o
the result element list are:
VS Code =>
onAnotherSomeHandle()
onSomeHandle()
Sublime Text=>
onSomeHandle()
onAnotherSomeHandle()
what I want is onSomeHandle().
example 2)
setDBook()
setDefineSome(bool)
onStoreDefineAddressBook()
let search with such as 'sdb'
the results :
VS Code =>
onStoreDefineAddressBook()
setDefineSome(bool)
setDBook()
Sublime Text =>
setDBook()
onStoreDefineAddressBook()
setDefineSome(bool)
what I want is setDBook()
On the candidates list, It doesn't focus to the symbol in where the cursor is on editor when search box is invoked by ctrl+shift+o, it always get focus at the top element.
Sublime Text focus to the symbol in which gets the cursor in editor.
In my experience, It gets better convenient in Sublime Text.
I'm new with VS Code, I have used Sublime Text and Eclipse for a few years.
I use always the searching by symbol while work.
I feels a bit more bad than Sublime Text with this feature,
I think this feature should key feature on mention to if not full IDE.
The text was updated successfully, but these errors were encountered: