aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2016-09-12 18:01:12 +0100
committerThomas Adam <thomas@xteddy.org>2016-09-12 18:01:12 +0100
commita5b29a1250c321d08b227120b4d9e835297e7acd (patch)
treeb9324a9c18be232633b9e8ba6ae749e95178dad3 /tmux.h
parent060515684dd2f3d471cc801920495426368b6ecf (diff)
parent2e5584c2b41df1c1b836c3229ea78f8ea3d81054 (diff)
downloadrtmux-a5b29a1250c321d08b227120b4d9e835297e7acd.tar.gz
rtmux-a5b29a1250c321d08b227120b4d9e835297e7acd.tar.bz2
rtmux-a5b29a1250c321d08b227120b4d9e835297e7acd.zip
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 1610b952..dff73915 100644
--- a/tmux.h
+++ b/tmux.h
@@ -568,6 +568,7 @@ struct mode_key_data {
/* Binding between a key and a command. */
struct mode_key_binding {
key_code key;
+ u_int repeat;
int mode;
enum mode_key_cmd cmd;
@@ -1635,7 +1636,7 @@ const struct mode_key_table *mode_key_findtable(const char *);
void mode_key_init_trees(void);
void mode_key_init(struct mode_key_data *, struct mode_key_tree *);
enum mode_key_cmd mode_key_lookup(struct mode_key_data *, key_code,
- const char **);
+ const char **, u_int *);
/* notify.c */
void notify_enable(void);