diff options
author | Christian Duerr <contact@christianduerr.com> | 2021-01-01 09:21:02 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-01 09:21:02 +0000 |
commit | 43ea180d8e61a617c07b59c6b97fcf4e7258477d (patch) | |
tree | 4b0649ef818bfcbadbb020a52cda9f37886ec865 /CHANGELOG.md | |
parent | a1e2d6a5573d967aaceeadaefa17b6a00a2e4ca4 (diff) | |
download | alacritty-43ea180d8e61a617c07b59c6b97fcf4e7258477d.tar.gz alacritty-43ea180d8e61a617c07b59c6b97fcf4e7258477d.zip |
Fix movement between matches in vi-less search
This resolves various bugs related to vi-less search. The primary issue
was that when jumping between matches more than 1000 lines apart, the
search would get stuck and not advance between matches properly due to
the 1000 line synchronous search limit.
Some other issues related to the tracking of the search origin have also
been fixed, improving the viewport positioning while interacting with
the search outside of vi mode. This was done by keeping the search
origin outside of the viewport, which allows for search to start right
at the first character. Previously the search was on top of the first
character which lead to it being excluded from search.
Fixes #4626.
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 ca1e5f37..e61b6a89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -51,6 +51,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Cursor not being rendered with a lot of unicode glyphs visible - IME input swallowed after triggering a key binding - Crash on Wayland due to non-standard fontconfig configuration +- Search without vi mode not jumping properly between all matches ### Removed |