diff options
author | 2009-12-14 10:43:41 +0000 | |
---|---|---|
committer | 2009-12-14 10:43:41 +0000 | |
commit | 298db98fdbfb7f3b4f506e8e4346cc85483c25ba (patch) | |
tree | 01ab32e210540f0fb63abca1275856f389e8b036 /usr.bin/tmux/tmux.c | |
parent | fuss about install msgs: new method state->ntogo, use it to annotate more (diff) | |
download | wireguard-openbsd-298db98fdbfb7f3b4f506e8e4346cc85483c25ba.tar.xz wireguard-openbsd-298db98fdbfb7f3b4f506e8e4346cc85483c25ba.zip |
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 'usr.bin/tmux/tmux.c')
-rw-r--r-- | usr.bin/tmux/tmux.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.c b/usr.bin/tmux/tmux.c index 4710bf9044e..edff9be2501 100644 --- a/usr.bin/tmux/tmux.c +++ b/usr.bin/tmux/tmux.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.c,v 1.64 2009/12/11 13:58:48 nicm Exp $ */ +/* $OpenBSD: tmux.c,v 1.65 2009/12/14 10:43:41 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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; |