aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2019-05-09 13:12:59 +0000
committernicm <nicm>2019-05-09 13:12:59 +0000
commit21d97504505f2310c5d065e06d3c550d7b5d9f89 (patch)
tree066bce6c32d07a9470dea9949a5a6d2a0e1cc882 /tmux.h
parent3c68e51609d35189e46d9b14c2a489a5ca3de67e (diff)
downloadrtmux-21d97504505f2310c5d065e06d3c550d7b5d9f89.tar.gz
rtmux-21d97504505f2310c5d065e06d3c550d7b5d9f89.tar.bz2
rtmux-21d97504505f2310c5d065e06d3c550d7b5d9f89.zip
send-keys also needs to insert key commands in the right order.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/tmux.h b/tmux.h
index 39b77341..955643d8 100644
--- a/tmux.h
+++ b/tmux.h
@@ -2000,8 +2000,9 @@ void key_bindings_add(const char *, key_code, int, struct cmd_list *);
void key_bindings_remove(const char *, key_code);
void key_bindings_remove_table(const char *);
void key_bindings_init(void);
-void key_bindings_dispatch(struct key_binding *, struct cmdq_item *,
- struct client *, struct mouse_event *, struct cmd_find_state *);
+struct cmdq_item *key_bindings_dispatch(struct key_binding *,
+ struct cmdq_item *, struct client *, struct mouse_event *,
+ struct cmd_find_state *);
/* key-string.c */
key_code key_string_lookup_string(const char *);