diff options
author | Nathan Lilienthal <nathan@nixpulvis.com> | 2019-11-18 16:15:25 -0500 |
---|---|---|
committer | Christian Duerr <contact@christianduerr.com> | 2019-11-18 22:15:25 +0100 |
commit | 182a9d5c2e01ec9b155fc7edf547e8e6de2f2bd5 (patch) | |
tree | 56889a5b18e40c7f4b30ea53b8eb152fbeb82a2d /CHANGELOG.md | |
parent | bcdc605436ebe137173c531844a739eda6ee41ae (diff) | |
download | alacritty-182a9d5c2e01ec9b155fc7edf547e8e6de2f2bd5.tar.gz alacritty-182a9d5c2e01ec9b155fc7edf547e8e6de2f2bd5.zip |
Fix deletion of lines when clearing the screen
Previously Alacritty would delete lines when clearing the screen, leading to a
loss of data in the scrollback buffer. Instead of deleting these lines, they
are now rotated outside of the visible region.
This also fixes some issues with Alacritty only resetting lines partially when
the background color of the template cell changed.
Fixes #2199.
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 2bedd1f6..45966460 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - On Windows, query DirectWrite for recommended anti-aliasing settings +- Scroll lines out of the visible region instead of deleting them when clearing the screen ### Fixed |