ignore case while filtering completions (#6008)
This commit is contained in:
parent
0f64f31d8b
commit
c332b16855
1 changed files with 1 additions and 1 deletions
|
@ -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(),
|
||||
|
|
Loading…
Add table
Reference in a new issue