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.h | |
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.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 4b89862436c..855a3839e2e 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.194 2009/12/10 09:16:52 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.195 2009/12/14 10:43:41 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -50,7 +50,7 @@ extern char **environ; /* Default prompt history length. */ #define PROMPT_HISTORY 100 -/* +/* * Minimum layout cell size, NOT including separator line. The scroll region * cannot be one line in height so this must be at least two. */ @@ -59,9 +59,6 @@ extern char **environ; /* Automatic name refresh interval, in milliseconds. */ #define NAME_INTERVAL 500 -/* Escape timer period, in milliseconds. */ -#define ESCAPE_PERIOD 500 - /* Maximum data to buffer for output before suspending reading from panes. */ #define BACKOFF_THRESHOLD 1024 |