mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-04 23:31:57 +00:00
Merge pull request #2169 from zed-industries/improve-autocomplete
Score matches case-sensitively when query contains an uppercase char
This commit is contained in:
commit
7641965326
1 changed files with 1 additions and 1 deletions
|
@ -812,7 +812,7 @@ impl CompletionsMenu {
|
||||||
fuzzy::match_strings(
|
fuzzy::match_strings(
|
||||||
&self.match_candidates,
|
&self.match_candidates,
|
||||||
query,
|
query,
|
||||||
false,
|
query.chars().any(|c| c.is_uppercase()),
|
||||||
100,
|
100,
|
||||||
&Default::default(),
|
&Default::default(),
|
||||||
executor,
|
executor,
|
||||||
|
|
Loading…
Reference in a new issue