ignore case while filtering completions (#6008)

pull/5/head
Pascal Kuthe 1 year ago committed by GitHub
parent 0f64f31d8b
commit c332b16855
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save