diff options
author | 2009-11-19 14:06:33 +0000 | |
---|---|---|
committer | 2009-11-19 14:06:33 +0000 | |
commit | 060fa02b46d808ea253a33ebc2f5afcb4138a118 (patch) | |
tree | 2147018b8a3730207f33e54b0d90bef693d6e61f /usr.bin/tmux/tmux.c | |
parent | Tidy up by breaking the # replacement code into a separate function, also add a (diff) | |
download | wireguard-openbsd-060fa02b46d808ea253a33ebc2f5afcb4138a118.tar.xz wireguard-openbsd-060fa02b46d808ea253a33ebc2f5afcb4138a118.zip |
Revert to xterm-keys off by default. It was on as an experiment to see if the
option could be removed, but it affects vi, so we have to keep the option, and
a conservative default is better.
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 d9872a72d54..b2cd6806a71 100644 --- a/usr.bin/tmux/tmux.c +++ b/usr.bin/tmux/tmux.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.c,v 1.58 2009/11/18 13:16:33 nicm Exp $ */ +/* $OpenBSD: tmux.c,v 1.59 2009/11/19 14:06:34 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -391,7 +391,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", 1); + options_set_number(wo, "xterm-keys", 0); options_set_number(wo, "remain-on-exit", 0); options_set_number(wo, "synchronize-panes", 0); |