summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd-set-option.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2009-12-14 10:43:41 +0000
committernicm <nicm@openbsd.org>2009-12-14 10:43:41 +0000
commit298db98fdbfb7f3b4f506e8e4346cc85483c25ba (patch)
tree01ab32e210540f0fb63abca1275856f389e8b036 /usr.bin/tmux/cmd-set-option.c
parentfuss about install msgs: new method state->ntogo, use it to annotate more (diff)
downloadwireguard-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/cmd-set-option.c')
-rw-r--r--usr.bin/tmux/cmd-set-option.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/cmd-set-option.c b/usr.bin/tmux/cmd-set-option.c
index 2fdbe7e211b..d9b9eeadd30 100644
--- a/usr.bin/tmux/cmd-set-option.c
+++ b/usr.bin/tmux/cmd-set-option.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmd-set-option.c,v 1.30 2009/12/11 13:58:48 nicm Exp $ */
+/* $OpenBSD: cmd-set-option.c,v 1.31 2009/12/14 10:43:41 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -74,6 +74,7 @@ const char *set_option_bell_action_list[] = {
};
const struct set_option_entry set_option_table[] = {
+ { "escape-time", SET_OPTION_NUMBER, 0, INT_MAX, NULL },
{ "quiet", SET_OPTION_FLAG, 0, 0, NULL },
{ NULL, 0, 0, 0, NULL }
};