mirror of
https://github.com/tmate-io/tmate.git
synced 2026-07-27 12:54:02 +00:00
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:
parent
ed781e84ee
commit
4a38189349
2 changed files with 2 additions and 2 deletions
2
tmux.1
2
tmux.1
|
|
@ -1803,7 +1803,7 @@ will generate
|
|||
.Xr xterm 1 -style
|
||||
function key sequences; these have a number included to indicate modifiers such
|
||||
as Shift, Alt or Ctrl.
|
||||
The default is on.
|
||||
The default is off.
|
||||
.El
|
||||
.It Xo Ic show-options
|
||||
.Op Fl g
|
||||
|
|
|
|||
2
tmux.c
2
tmux.c
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue