aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornicm <nicm>2020-03-16 09:18:47 +0000
committernicm <nicm>2020-03-16 09:18:47 +0000
commit7cae4e8e89a98329843e3df8b3644f501288256b (patch)
tree929a9d06252fee3788deb4c19de9f6a6ff8f9813
parent7815b30c7d15cc5a728687de3a54f032c77cb4e3 (diff)
downloadrtmux-7cae4e8e89a98329843e3df8b3644f501288256b.tar.gz
rtmux-7cae4e8e89a98329843e3df8b3644f501288256b.tar.bz2
rtmux-7cae4e8e89a98329843e3df8b3644f501288256b.zip
Turn off mouse mode 1003 as well as the rest when exiting.
-rw-r--r--tty.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/tty.c b/tty.c
index 3bab556d..8efe57b5 100644
--- a/tty.c
+++ b/tty.c
@@ -330,8 +330,10 @@ tty_start_tty(struct tty *tty)
log_debug("%s: using UTF-8 for ACS", c->name);
tty_putcode(tty, TTYC_CNORM);
- if (tty_term_has(tty->term, TTYC_KMOUS))
- tty_puts(tty, "\033[?1000l\033[?1002l\033[?1006l\033[?1005l");
+ if (tty_term_has(tty->term, TTYC_KMOUS)) {
+ tty_puts(tty, "\033[?1000l\033[?1002l\033[?1003l");
+ tty_puts(tty, "\033[?1006l\033[?1005l");
+ }
if (tty_term_flag(tty->term, TTYC_XT)) {
if (options_get_number(global_options, "focus-events")) {
@@ -404,8 +406,10 @@ tty_stop_tty(struct tty *tty)
tty_raw(tty, tty_term_string(tty->term, TTYC_CR));
tty_raw(tty, tty_term_string(tty->term, TTYC_CNORM));
- if (tty_term_has(tty->term, TTYC_KMOUS))
- tty_raw(tty, "\033[?1000l\033[?1002l\033[?1006l\033[?1005l");
+ if (tty_term_has(tty->term, TTYC_KMOUS)) {
+ tty_raw(tty, "\033[?1000l\033[?1002l\033[?1003l");
+ tty_raw(tty, "\033[?1006l\033[?1005l");
+ }
if (tty_term_flag(tty->term, TTYC_XT)) {
if (tty->flags & TTY_FOCUS) {