mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-11 13:51:16 -03:00
While working on making the history command support case-sensitive and insensitive searches I noticed that entering "all" when interactively deleting history entries resulted in an error. That's because the history builtin currently only supports `--exact` so we need to loop over the matching entries and delete them one at a time. Fixes #3448