Fuzzier fuzzy search for autocompleting variable names
The fuzzy matching that is done while typing variable names is not as fuzzy as I'd like it to be, but I can find no way to make it fuzzier. Consider I have a variable named `$long_variable_name`. If I type a `$` the suggestions to autocomplete it will be made using a fuzzy search. `$l` will highlight my variable, and `$lv` as well (l is the first letter of "long", v of "variable"). If I however type `$lnv`, the fuzzy search fails to match `$long_variable_name`, while there is an occurence of the letters "l", "n" and "v", in that exact order. I do not want to think about which letters are the first letters of the words in my snail cased variable; I just want to type whatever my brain comes up with first and it would be awesome if PHPStorm could autocomplete that. Not sure if this is the right place for suggestions/discussions but I'm hoping so :).
请先登录再写评论。
That's a very arguable request as if we do that the completion list will give tons of unrelated suggestions in the first position.
However, if you feel like it will gain a lot of votes, please submit the request to our issue tracker: https://youtrack.jetbrains.com/newIssue?project=WI
That might be true, but when sticking to the current symbol scope, I think it will make autocompleting variable/function names much easier. Thanks for the link!