diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-12-14 10:43:41 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-12-14 10:43:41 +0000 |
commit | 30962cb2008a5f699bdf3e1da01a2554c53b8062 (patch) | |
tree | 9c41eb0a70338e181ed598140a6c8039a4943d3b /tmux.h | |
parent | 3f58cbaae91ac941c34bad3cb2447d6bcc541a2d (diff) | |
download | rtmux-30962cb2008a5f699bdf3e1da01a2554c53b8062.tar.gz rtmux-30962cb2008a5f699bdf3e1da01a2554c53b8062.tar.bz2 rtmux-30962cb2008a5f699bdf3e1da01a2554c53b8062.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 'tmux.h')
-rw-r--r-- | tmux.h | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -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 |