From 21d97504505f2310c5d065e06d3c550d7b5d9f89 Mon Sep 17 00:00:00 2001 From: nicm Date: Thu, 9 May 2019 13:12:59 +0000 Subject: send-keys also needs to insert key commands in the right order. --- tmux.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tmux.h') 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 *); -- cgit