diff options
author | nicm <nicm> | 2020-01-12 22:00:20 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-01-12 22:00:20 +0000 |
commit | 381333c4a9fd521bee8a0287e648f0c6aeb96a0b (patch) | |
tree | 8785e2523041c0c3c1b4c4e6a305f4771e256253 /tty.c | |
parent | 193e637de050e3757698812e9a87b869c87def6c (diff) | |
download | rtmux-381333c4a9fd521bee8a0287e648f0c6aeb96a0b.tar.gz rtmux-381333c4a9fd521bee8a0287e648f0c6aeb96a0b.tar.bz2 rtmux-381333c4a9fd521bee8a0287e648f0c6aeb96a0b.zip |
Detect iTerm2 and enable DECSLRM.
Diffstat (limited to 'tty.c')
-rw-r--r-- | tty.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -327,7 +327,7 @@ tty_start_tty(struct tty *tty) tty->flags |= TTY_FOCUS; tty_puts(tty, "\033[?1004h"); } - tty_puts(tty, "\033[c"); + tty_puts(tty, "\033[c\033[1337n"); } tty->flags |= TTY_STARTED; |