We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bcaefd commit 06b180aCopy full SHA for 06b180a
src/main.rs
@@ -220,7 +220,9 @@ fn update_suggestions(
220
let mut suggestions = Vec::new();
221
for app in apps_lock.iter() {
222
let name = &app.0;
223
- if let Some(mtch) = sublime_fuzzy::best_match(&state.text, name) {
+ if let Some(mtch) =
224
+ sublime_fuzzy::best_match(&state.text.to_lowercase(), &name.to_lowercase())
225
+ {
226
suggestions.push((mtch, name.to_string()));
227
}
228
0 commit comments