aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-12-16 01:09:01 +0000
committerTiago Cunha <tcunha@gmx.com>2009-12-16 01:09:01 +0000
commit90d40e27daaf2d2e5e0ebeffa8b5865d9536df80 (patch)
tree2fcf5ab6827af7a4dd9a03db57200cb2f0f325b5 /tmux.c
parentef3e483a0d84d3e38be032256c5e0f69dba77f75 (diff)
downloadrtmux-90d40e27daaf2d2e5e0ebeffa8b5865d9536df80.tar.gz
rtmux-90d40e27daaf2d2e5e0ebeffa8b5865d9536df80.tar.bz2
rtmux-90d40e27daaf2d2e5e0ebeffa8b5865d9536df80.zip
Sync OpenBSD patchset 587:
New server option, escape-time, to set the timeout used to detect if escapes are alone or part of a function key or meta sequence.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmux.c b/tmux.c
index b45969f7..c321291a 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.195 2009-12-12 01:01:11 tcunha Exp $ */
+/* $Id: tmux.c,v 1.196 2009-12-16 01:09:01 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -320,6 +320,7 @@ main(int argc, char **argv)
options_init(&global_options, NULL);
oo = &global_options;
options_set_number(oo, "quiet", quiet);
+ options_set_number(oo, "escape-time", 500);
options_init(&global_s_options, NULL);
so = &global_s_options;