diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-11-19 14:06:33 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-11-19 14:06:33 +0000 |
commit | 4a3818934924090cc0a5800cc38bf89fa8f2ea53 (patch) | |
tree | df1cc6bacfea2b1c78d6888ccfa02683f7ba5ea0 /tmux.c | |
parent | ed781e84eed90217f39c763bf43838598d23c611 (diff) | |
download | rtmux-4a3818934924090cc0a5800cc38bf89fa8f2ea53.tar.gz rtmux-4a3818934924090cc0a5800cc38bf89fa8f2ea53.tar.bz2 rtmux-4a3818934924090cc0a5800cc38bf89fa8f2ea53.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 'tmux.c')
-rw-r--r-- | tmux.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |