Reputation: 568
I added tmux binding for resizing pane like this
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
but ended up can't type HJKL (uppercase), since it's already resizing the panel. what I want to expect is using ctrl-a
(prefix) then HJKL.
Upvotes: 1
Views: 827
Reputation: 3276
You can use tmux list-keys
to verify if those keys are actually sit in prefix
key table. You may need to explicitly reset the prefix key via set -g prefix C-a
.
Upvotes: 1