Skip to content

Commit

Permalink
ignore case while filtering completions (#6008)
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalkuthe authored Feb 16, 2023
1 parent 0f64f31 commit c332b16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helix-term/src/ui/menu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit c332b16

Please sign in to comment.