diff options
author | nicm <nicm> | 2019-05-07 11:24:03 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-05-07 11:24:03 +0000 |
commit | 85a9c2f52b8855560fa9fdaa033d1c7bca738429 (patch) | |
tree | b1e0274124ba02ba6cb5c368bbcd09394e782405 /tmux.h | |
parent | 69440d19b783c72139f22c5c72b34b55d99e71de (diff) | |
download | rtmux-85a9c2f52b8855560fa9fdaa033d1c7bca738429.tar.gz rtmux-85a9c2f52b8855560fa9fdaa033d1c7bca738429.tar.bz2 rtmux-85a9c2f52b8855560fa9fdaa033d1c7bca738429.zip |
Treat keys in identify mode (display-panes) specially and handle them
immediately rather than queuing them (the command can block the queue
which means they were not being seen until it finished which was too
late). Reported by denis@ and solene@, ok solene@.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2012,7 +2012,7 @@ void server_client_set_identify(struct client *, u_int); void server_client_set_key_table(struct client *, const char *); const char *server_client_get_key_table(struct client *); int server_client_check_nested(struct client *); -enum cmd_retval server_client_key_callback(struct cmdq_item *, void *); +int server_client_handle_key(struct client *, struct key_event *); struct client *server_client_create(int); int server_client_open(struct client *, char **); void server_client_unref(struct client *); |