mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 05:21:10 +00:00
Pass keys that aren't 0-9 on to normal key processing when display-panes
is active (restores previous behaviour).
This commit is contained in:
@ -204,7 +204,7 @@ cmd_display_panes_key(struct client *c, struct key_event *event)
|
||||
struct cmd_parse_result *pr;
|
||||
|
||||
if (event->key < '0' || event->key > '9')
|
||||
return (1);
|
||||
return (-1);
|
||||
|
||||
wp = window_pane_at_index(w, event->key - '0');
|
||||
if (wp == NULL)
|
||||
|
Reference in New Issue
Block a user