diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-12 23:37:02 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-12 23:37:02 +0000 |
commit | 60bfaf5baef7872c6e6e57ac33cf928afd198a55 (patch) | |
tree | 4d62d3b54088a1ec4fb16f993c90b24b222fdf5b /tmux.h | |
parent | e099a78b4cb8a746387703f8b8a5baf072337713 (diff) | |
download | rtmux-60bfaf5baef7872c6e6e57ac33cf928afd198a55.tar.gz rtmux-60bfaf5baef7872c6e6e57ac33cf928afd198a55.tar.bz2 rtmux-60bfaf5baef7872c6e6e57ac33cf928afd198a55.zip |
prefix-time option to allow multiple commands without additional prefixes.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.227 2009-01-12 22:48:00 nicm Exp $ */ +/* $Id: tmux.h,v 1.228 2009-01-12 23:37:02 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -741,6 +741,7 @@ struct client { struct tty tty; struct timeval status_timer; + struct timeval command_timer; u_int sx; u_int sy; @@ -887,7 +888,7 @@ struct set_option_entry { }; extern const struct set_option_entry set_option_table[]; extern const struct set_option_entry set_window_option_table[]; -#define NSETOPTION 19 +#define NSETOPTION 20 #define NSETWINDOWOPTION 12 /* Edit keys. */ |