diff options
author | Christian Duerr <contact@christianduerr.com> | 2024-02-14 01:59:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-14 04:59:56 +0400 |
commit | f1853a031d52f6964bbf368d2975767449fc4814 (patch) | |
tree | f6ca76cedb8b55ec62db823abb6ff3b919964a09 /alacritty_terminal/tests/ref.rs | |
parent | de12f03812e04c1b7cd58e8aa86d50e55de92f33 (diff) | |
download | r-alacritty-f1853a031d52f6964bbf368d2975767449fc4814.tar.gz r-alacritty-f1853a031d52f6964bbf368d2975767449fc4814.tar.bz2 r-alacritty-f1853a031d52f6964bbf368d2975767449fc4814.zip |
Fix regional scrolling leaking into history
This fixes an issue where a scrolling region that does not start at the
top of the screen would still rotate lines into history when scrolling
the content "upwards".
Diffstat (limited to 'alacritty_terminal/tests/ref.rs')
-rw-r--r-- | alacritty_terminal/tests/ref.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/alacritty_terminal/tests/ref.rs b/alacritty_terminal/tests/ref.rs index 587d2d3e..1f992941 100644 --- a/alacritty_terminal/tests/ref.rs +++ b/alacritty_terminal/tests/ref.rs @@ -71,6 +71,7 @@ ref_tests! { zerowidth zsh_tab_completion erase_in_line + scroll_in_region_up_preserves_history } fn read_u8<P>(path: P) -> Vec<u8> |