diff options
author | Max Rees <maxcrees@me.com> | 2019-08-19 19:12:14 -0500 |
---|---|---|
committer | Max Rees <maxcrees@me.com> | 2019-08-19 19:12:14 -0500 |
commit | 12dc56030ed99e73bc19efcb627ea4fa1f475ddb (patch) | |
tree | 9f01b2a6c52b2b91fb3826b2569baa1a03c85490 /user/tmux/xterm-DECLRMM.patch | |
parent | a4e9e939954682c18b16d3ddcf9e79bdbc073e64 (diff) | |
download | packages-12dc56030ed99e73bc19efcb627ea4fa1f475ddb.tar.gz packages-12dc56030ed99e73bc19efcb627ea4fa1f475ddb.tar.bz2 packages-12dc56030ed99e73bc19efcb627ea4fa1f475ddb.tar.xz packages-12dc56030ed99e73bc19efcb627ea4fa1f475ddb.zip |
Actually, fix tmux instead of xterm
Diffstat (limited to 'user/tmux/xterm-DECLRMM.patch')
-rw-r--r-- | user/tmux/xterm-DECLRMM.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/user/tmux/xterm-DECLRMM.patch b/user/tmux/xterm-DECLRMM.patch new file mode 100644 index 000000000..b9bef3455 --- /dev/null +++ b/user/tmux/xterm-DECLRMM.patch @@ -0,0 +1,23 @@ +From 26f274011096b9eacfd2753d8f7afcb63e796ab9 Mon Sep 17 00:00:00 2001 +From: nicm <nicm> +Date: Thu, 1 Aug 2019 11:45:34 +0000 +Subject: [PATCH] xterm 348 now disables margins when resized, so send DECLRMM + again. + +--- + tty.c | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/tty.c b/tty.c +index ab1da9fd3..024aef271 100644 +--- a/tty.c ++++ b/tty.c +@@ -1879,6 +1879,8 @@ tty_invalidate(struct tty *tty) + tty->rlower = tty->rright = UINT_MAX; + + if (tty->flags & TTY_STARTED) { ++ if (tty_use_margin(tty)) ++ tty_puts(tty, "\033[?69h"); /* DECLRMM */ + tty_putcode(tty, TTYC_SGR0); + + tty->mode = ALL_MODES; |