send-keys also needs to insert key commands in the right order.

This commit is contained in:
nicm
2019-05-09 13:12:59 +00:00
parent 3c68e51609
commit 21d9750450
3 changed files with 22 additions and 18 deletions

5
tmux.h
View File

@ -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 *);