From 001f95d221e017a63d388aedbfed8bbb7a4e05c7 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sun, 20 Oct 2013 09:37:51 +0000 Subject: 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. --- usr.bin/tmux/tty.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'usr.bin') diff --git a/usr.bin/tmux/tty.c b/usr.bin/tmux/tty.c index 30881f1c0df..b538b0cb595 100644 --- a/usr.bin/tmux/tty.c +++ b/usr.bin/tmux/tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty.c,v 1.162 2013/06/23 13:10:48 nicm Exp $ */ +/* $OpenBSD: tty.c,v 1.163 2013/10/20 09:37:50 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -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)); -- cgit v1.2.3