diff options
author | Christian Duerr <contact@christianduerr.com> | 2020-12-20 04:27:08 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-20 04:27:08 +0000 |
commit | f016a209b4ac1bfa6625b9d30e6f69bc91bc7545 (patch) | |
tree | f3808e085b53f84203c322bdd408746a8c9dde1d /CHANGELOG.md | |
parent | 8a7f8c9d3eca214578439da417d37395971a711d (diff) | |
download | alacritty-f016a209b4ac1bfa6625b9d30e6f69bc91bc7545.tar.gz alacritty-f016a209b4ac1bfa6625b9d30e6f69bc91bc7545.zip |
Add search history support
This adds a history to the regex search limited to at most 255 entries.
Whenever a search is either confirmed or cancelled, the last regex is
entered into the history and can be accessed when a new search is
started.
This should help users recover complicated search regexes after
accidentally discarding them, or handle repeated searches with the same
regexes.
Fixes #4095.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 0175d10f..1c005e62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - IME support on Windows - Urgency support on Windows - Customizable keybindings for search +- History for search mode, bound to ^P/^N/Up/Down by default ### Changed |