From c332b16855c72beaf0297ad1d5768ed83a768792 Mon Sep 17 00:00:00 2001 From: Pascal Kuthe Date: Thu, 16 Feb 2023 02:16:51 +0100 Subject: [PATCH] ignore case while filtering completions (#6008) --- helix-term/src/ui/menu.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-term/src/ui/menu.rs b/helix-term/src/ui/menu.rs index 8aa10c08b..30625acee 100644 --- a/helix-term/src/ui/menu.rs +++ b/helix-term/src/ui/menu.rs @@ -79,7 +79,7 @@ impl Menu { Self { options, editor_data, - matcher: Box::default(), + matcher: Box::new(Matcher::default().ignore_case()), matches, cursor: None, widths: Vec::new(),