Add Candidate type for case-insensitive completion, shopt_group macro, escape fixes, and vi mode tweaks

This commit is contained in:
2026-03-17 01:25:55 -04:00
parent bce6cd10f7
commit b0325b6bbb
8 changed files with 477 additions and 598 deletions

View File

@@ -284,7 +284,7 @@ impl History {
.search_mask
.clone()
.into_iter()
.map(|ent| ent.command().to_string());
.map(|ent| super::complete::Candidate::from(ent.command()));
self.fuzzy_finder.activate(raw_entries.collect());
None
}