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(
|
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…
Add table
Add a link
Reference in a new issue