ignore case while filtering completions (#6008)

This commit is contained in:
Pascal Kuthe 2023-02-16 02:16:51 +01:00 committed by GitHub
parent 0f64f31d8b
commit c332b16855
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,7 +79,7 @@ pub fn new(
Self {
options,
editor_data,
matcher: Box::default(),
matcher: Box::new(Matcher::default().ignore_case()),
matches,
cursor: None,
widths: Vec::new(),