Sync OpenBSD patchset 551:

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.
This commit is contained in:
Tiago Cunha
2009-11-19 22:31:27 +00:00
parent 224ae13ab0
commit 8512811535
2 changed files with 4 additions and 4 deletions

4
tmux.c
View File

@@ -1,4 +1,4 @@
/* $Id: tmux.c,v 1.189 2009-11-19 22:20:04 tcunha Exp $ */
/* $Id: tmux.c,v 1.190 2009-11-19 22:31:27 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -394,7 +394,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);