diff options
author | 2009-11-10 18:53:11 +0000 | |
---|---|---|
committer | 2009-11-10 18:53:11 +0000 | |
commit | 348c998d4bcf878c63affeafd7473e1f6ca69ace (patch) | |
tree | 9fbd3dba96e76acc1b9e077a4d814f029949d4ce /usr.bin/tmux/tmux.c | |
parent | Don't output rxvtisms either. (diff) | |
download | wireguard-openbsd-348c998d4bcf878c63affeafd7473e1f6ca69ace.tar.xz wireguard-openbsd-348c998d4bcf878c63affeafd7473e1f6ca69ace.zip |
There is no real standard for modifier plus function keys. Previously, tmux
output some from rxvt but in other ways did the same as xterm or other
terminals, but this is a bit inconsistent.
xterm's method is fairly sensible and we already support it (xterm-keys), so
enable it by default instead.
Diffstat (limited to 'usr.bin/tmux/tmux.c')
-rw-r--r-- | usr.bin/tmux/tmux.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.c b/usr.bin/tmux/tmux.c index 23d9b59ea6d..62a983063c1 100644 --- a/usr.bin/tmux/tmux.c +++ b/usr.bin/tmux/tmux.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.c,v 1.56 2009/11/04 20:59:22 nicm Exp $ */ +/* $OpenBSD: tmux.c,v 1.57 2009/11/10 18:53:11 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -390,7 +390,7 @@ main(int argc, char **argv) options_set_number(wo, "window-status-current-bg", 8); options_set_number(wo, "window-status-current-fg", 8); options_set_number(wo, "window-status-fg", 8); - options_set_number(wo, "xterm-keys", 0); + options_set_number(wo, "xterm-keys", 1); options_set_number(wo, "remain-on-exit", 0); options_set_number(wo, "synchronize-panes", 0); |