aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-03-02 16:55:23 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-03-02 16:55:23 +0000
commit57f5f44d0f55136a78f511bb74b92e2ccbf6f309 (patch)
tree2110e40936464ed5b586186f7712d457639f2e1c /tmux.h
parent792b4db4a761f45897f91105b0e3522781b9ec4b (diff)
downloadrtmux-57f5f44d0f55136a78f511bb74b92e2ccbf6f309.tar.gz
rtmux-57f5f44d0f55136a78f511bb74b92e2ccbf6f309.tar.bz2
rtmux-57f5f44d0f55136a78f511bb74b92e2ccbf6f309.zip
Sort out escape key handling so it works.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 2f0a434e..e2753d75 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.274 2009-02-21 17:46:13 nicm Exp $ */
+/* $Id: tmux.h,v 1.275 2009-03-02 16:55:23 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -126,6 +126,9 @@ extern const char *__progname;
/* Automatic name refresh interval, in milliseconds. */
#define NAME_INTERVAL 500
+/* Escape timer period, in milliseconds. */
+#define ESCAPE_PERIOD 250
+
/* Fatal errors. */
#define fatal(msg) log_fatal("%s: %s", __func__, msg);
#define fatalx(msg) log_fatalx("%s: %s", __func__, msg);