-
Notifications
You must be signed in to change notification settings - Fork 30.2k
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
Terminal: recent command fuzzy search not very fuzzy #156325
Comments
That is odd, though we're using the fuzzy searching that's used elsewhere in VSCode, so I wonder if there's an issue tracking that. |
@aeschli or @TylerLeonhardt I don't see one, but believe this is your domain |
@Tyriar didn't you implement the fuzziness here? |
Yes he did @TylerLeonhardt |
This might be related to the quick pick's filtering, we should look into it first. |
I confirm it happens filtering commands in palette too. Typing My setup
|
I recently switched from the IntelliJ world to VSCode and the fuzzy match algorithm of VSCode is slowly driving me insane. In addition to the cases here, one thing that IntelliJ gets really right is case sensitive matching of partial words and priority for local symbols. Check out this example. I am trying to match The result of this is that I frequently wind up with random variables and imports as a result of the correct result disappearing after I type more letters that should only increase its weight. |
Assigning this to @TylerLeonhardt as it's essentially asking for proper fuzzy matching in the quick pick as in #34088 |
@Tyriar but I thought you disabled filtering and implemented your own fuzzy logic? |
@TylerLeonhardt I think that's just for contiguous search, for fuzzy we defer to the default |
ah so it's using fuzzy search...... it's just not fuzzy enough. |
Testing #156002
It seems like the terminal recent command fuzzy search wants to find fuzzy matches in different words only, if the matches are in the same word it ignores them.
For example, have a bunch of git commands. Turn on fuzzy search.
Search for "gt" - does not get matched against all git commands - which I would expect
The text was updated successfully, but these errors were encountered: