diff options
author | Christian Duerr <contact@christianduerr.com> | 2021-07-17 23:14:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-17 23:14:39 +0000 |
commit | d8f0d3fabf811bedb26bb7752e4a7c2efab98d53 (patch) | |
tree | 34209356257acbec358e8064cc01eb9ede3742f9 /CHANGELOG.md | |
parent | e447156612d3239f6b0e938043038d0ce6edaebf (diff) | |
download | alacritty-d8f0d3fabf811bedb26bb7752e4a7c2efab98d53.tar.gz alacritty-d8f0d3fabf811bedb26bb7752e4a7c2efab98d53.zip |
Fix vi cursor tracking during scrolling
This resolves an issue with the vi mode cursor where it would not keep
track of the content while scrolled up in history but instead slowly
leave the viewport due to its absolute positioning.
While an alternative solution would have been to always keep the vi mode
cursor in the same spot on the viewport, keeping track of the content is
not only more easy to implement but it also makes for a nicer connection
between the vi mode cursor and the content below it.
Fixes #5339.
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 50bc907b..fe304c76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Crash when starting a vi mode search from the bottommost line - Original scroll position not restored after canceling search - Clipboard copy skipping non-empty cells when encountering an interrupted tab character +- Vi mode cursor moving downward when scrolled in history with active output ## 0.8.0 |