diff --git a/crates/editor/src/editor.rs b/crates/editor/src/editor.rs index db357f2b83916d9c47c962e7264b4ee7ef5efc79..6df0456d2fc4e55184c9ee1aab522d796f0e94b2 100644 --- a/crates/editor/src/editor.rs +++ b/crates/editor/src/editor.rs @@ -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,