kubido
kubido

Reputation: 568

Disable tmux resizing using shift (only) + hjkl

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

Answers (1)

Amos
Amos

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

Related Questions