diff options
author | Christian Duerr <contact@christianduerr.com> | 2020-07-06 05:08:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-06 05:08:36 +0000 |
commit | 72c916ff434e23d44e2a31e6a8d5f7b8ae649008 (patch) | |
tree | 5060c4144153e2e55527c29aa109acec0c79fd85 /alacritty_terminal/tests/ref.rs | |
parent | 92ea355eeea538bd868eaebdc03469630aba281c (diff) | |
download | alacritty-72c916ff434e23d44e2a31e6a8d5f7b8ae649008.tar.gz alacritty-72c916ff434e23d44e2a31e6a8d5f7b8ae649008.zip |
Preserve linewrap flag across alt screen switches
While neither VTE, URxvt nor Kitty handle this, preserving the linewrap
flag across alternate screen switches seems like the correct thing to
do. XTerm also does handle this correctly, which indicates that it is a
bug and not a feature.
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 95040b9c..3f415050 100644 --- a/alacritty_terminal/tests/ref.rs +++ b/alacritty_terminal/tests/ref.rs @@ -63,6 +63,7 @@ ref_tests! { scroll_up_reset clear_underline region_scroll_down + wrapline_alt_toggle } fn read_u8<P>(path: P) -> Vec<u8> |