summaryrefslogtreecommitdiffstats
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-12-14 10:43:41 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-12-14 10:43:41 +0000
commit30962cb2008a5f699bdf3e1da01a2554c53b8062 (patch)
tree9c41eb0a70338e181ed598140a6c8039a4943d3b /tmux.c
parent3f58cbaae91ac941c34bad3cb2447d6bcc541a2d (diff)
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.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tmux.c b/tmux.c
index 540c6f9f..0e080306 100644
--- a/tmux.c
+++ b/tmux.c
@@ -317,6 +317,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;