aboutsummaryrefslogtreecommitdiff
path: root/tty.c
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2020-04-17 12:01:30 +0100
committerThomas Adam <thomas@xteddy.org>2020-04-17 12:01:30 +0100
commitabeb31dd3d189dd3c880b1925b286c296ac5a869 (patch)
tree1f014a411b694ff67dc23217a6c7666ac847fe30 /tty.c
parent413c4cfd1bdf40cfbb65400abe7edff97ba821c9 (diff)
parent7f2925a01de5da0416dd2589ee080f61650f2da9 (diff)
downloadrtmux-abeb31dd3d189dd3c880b1925b286c296ac5a869.tar.gz
rtmux-abeb31dd3d189dd3c880b1925b286c296ac5a869.tar.bz2
rtmux-abeb31dd3d189dd3c880b1925b286c296ac5a869.zip
Merge branch 'obsd-master'
Diffstat (limited to 'tty.c')
-rw-r--r--tty.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tty.c b/tty.c
index 06ae6d31..4090a115 100644
--- a/tty.c
+++ b/tty.c
@@ -340,6 +340,7 @@ tty_start_tty(struct tty *tty)
tty->flags |= TTY_FOCUS;
tty_puts(tty, "\033[?1004h");
}
+ tty_puts(tty, "\033[?7727h");
}
evtimer_set(&tty->start_timer, tty_start_timer_callback, tty);
@@ -426,6 +427,7 @@ tty_stop_tty(struct tty *tty)
tty->flags &= ~TTY_FOCUS;
tty_raw(tty, "\033[?1004l");
}
+ tty_raw(tty, "\033[?7727l");
}
if (tty_use_margin(tty))