diff options
author | nicm <nicm> | 2017-04-21 16:04:18 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-04-21 16:04:18 +0000 |
commit | 92a77e7654286a8aa4734b36f74ea49f9494311b (patch) | |
tree | 614ddae6f0480b71170df4072cc5b83959772b73 /tmux.h | |
parent | c799425069d02675474cda312fac1457829052fb (diff) | |
download | rtmux-92a77e7654286a8aa4734b36f74ea49f9494311b.tar.gz rtmux-92a77e7654286a8aa4734b36f74ea49f9494311b.tar.bz2 rtmux-92a77e7654286a8aa4734b36f74ea49f9494311b.zip |
It is annoying that the copy mode key table (or any other key table)
will suppress root key table bindings. So change to always check the
root table if no binding is found in the current table (whether it be
the prefix table from pressing the prefix or the copy mode table from a
pane).
A root key binding can be blocked by binding the key to a command that
does nothing (like send-keys with no arguments).
Problem reported by Thomas Sattler.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -1847,7 +1847,6 @@ void server_client_set_identify(struct client *); void server_client_clear_identify(struct client *, struct window_pane *); void server_client_set_key_table(struct client *, const char *); const char *server_client_get_key_table(struct client *); -int server_client_is_default_key_table(struct client *); int server_client_check_nested(struct client *); void server_client_handle_key(struct client *, key_code); void server_client_create(int); |