Unnamed repository; edit this file 'description' to name the repository.
ignore case while filtering completions (#6008)
Pascal Kuthe 2023-02-16
parent 0f64f31 · commit c332b16
-rw-r--r--helix-term/src/ui/menu.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/ui/menu.rs b/helix-term/src/ui/menu.rs
index 8aa10c08..30625ace 100644
--- a/helix-term/src/ui/menu.rs
+++ b/helix-term/src/ui/menu.rs
@@ -79,7 +79,7 @@ impl<T: Item> Menu<T> {
Self {
options,
editor_data,
- matcher: Box::default(),
+ matcher: Box::new(Matcher::default().ignore_case()),
matches,
cursor: None,
widths: Vec::new(),