diff options
author | nicm <nicm> | 2013-10-20 09:37:50 +0000 |
---|---|---|
committer | nicm <nicm> | 2013-10-20 09:37:50 +0000 |
commit | f52eac62259c431daac84ddb6c2a5b7ebd528c2c (patch) | |
tree | fdd6a903659ad21e7a477a64c71bf82f04b5b9ca /tty.c | |
parent | 2eb6d6e31bdd2270e242d234006e7c83e0d12255 (diff) | |
download | rtmux-f52eac62259c431daac84ddb6c2a5b7ebd528c2c.tar.gz rtmux-f52eac62259c431daac84ddb6c2a5b7ebd528c2c.tar.bz2 rtmux-f52eac62259c431daac84ddb6c2a5b7ebd528c2c.zip |
Don't turn on modifyOtherKeys by default, it is annoying if tmux is
killed and it's left on and we can't turn it on and off like we do for
attributes. It's not hard to enable in .Xresources or .Xdefaults anyway.
Diffstat (limited to 'tty.c')
-rw-r--r-- | tty.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -224,7 +224,7 @@ tty_start_tty(struct tty *tty) tty->flags |= TTY_FOCUS; tty_puts(tty, "\033[?1004h"); } - tty_puts(tty, "\033[c\033[>4;1m\033[m"); + tty_puts(tty, "\033[c"); } tty->cx = UINT_MAX; @@ -292,7 +292,6 @@ tty_stop_tty(struct tty *tty) tty->flags &= ~TTY_FOCUS; tty_puts(tty, "\033[?1004l"); } - tty_raw(tty, "\033[>4m\033[m"); } tty_raw(tty, tty_term_string(tty->term, TTYC_RMCUP)); |