summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2019-05-07 11:24:03 +0000
committernicm <nicm>2019-05-07 11:24:03 +0000
commit85a9c2f52b8855560fa9fdaa033d1c7bca738429 (patch)
treeb1e0274124ba02ba6cb5c368bbcd09394e782405 /tmux.h
parent69440d19b783c72139f22c5c72b34b55d99e71de (diff)
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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index e6ed8c87..55c24531 100644
--- a/tmux.h
+++ b/tmux.h
@@ -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 *);