mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-02 15:00:23 +00:00
Score matches case-sensitively when query contains an uppercase char
This commit is contained in:
parent
88c6b890bc
commit
8db131a3a1
1 changed files with 1 additions and 1 deletions
|
@ -812,7 +812,7 @@ impl CompletionsMenu {
|
|||
fuzzy::match_strings(
|
||||
&self.match_candidates,
|
||||
query,
|
||||
false,
|
||||
query.chars().any(|c| c.is_uppercase()),
|
||||
100,
|
||||
&Default::default(),
|
||||
executor,
|
||||
|
|
Loading…
Reference in a new issue