diff options
author | Thomas Adam <thomas@xteddy.org> | 2016-06-15 12:01:11 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2016-06-15 12:01:11 +0100 |
commit | 5c12230a0879c7dd3ac5332dfdb9d0d7416b3557 (patch) | |
tree | 2721e0016e2ca721635e51aa6bf745ed880e6a3b /tmux.h | |
parent | 150c9f3fe0f7d74677d391d798efe2d49aa58cd9 (diff) | |
parent | bee3e3e28d04a237b1013b1dd3d36cddcd326891 (diff) | |
download | rtmux-5c12230a0879c7dd3ac5332dfdb9d0d7416b3557.tar.gz rtmux-5c12230a0879c7dd3ac5332dfdb9d0d7416b3557.tar.bz2 rtmux-5c12230a0879c7dd3ac5332dfdb9d0d7416b3557.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -825,6 +825,7 @@ struct window_mode { void (*key)(struct window_pane *, struct client *, struct session *, key_code, struct mouse_event *); }; +#define WINDOW_MODE_TIMEOUT 180 /* Structures for choose mode. */ struct window_choose_data { @@ -907,6 +908,8 @@ struct window_pane { const struct window_mode *mode; void *modedata; + struct event modetimer; + time_t modelast; TAILQ_ENTRY(window_pane) entry; RB_ENTRY(window_pane) tree_entry; |