Tendo mudado para a navegação do painel estilo vim no tmux com o seguinte:
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
Como posso desativar as combinações de teclas originais, especificamente C-a <arrow key>
?
Responder1
Usar unbind-key
:
unbind Left
unbind Down
unbind Up
unbind Right
Responder2
Se você quiser manter a navegação semelhante ao vim, seria útil remapear resize-pane
também:
# vim-like pane resizing
bind -r C-k resize-pane -U
bind -r C-j resize-pane -D
bind -r C-h resize-pane -L
bind -r C-l resize-pane -R
# vim-like pane switching
bind -r k select-pane -U
bind -r j select-pane -D
bind -r h select-pane -L
bind -r l select-pane -R
# and now unbind keys
unbind Up
unbind Down
unbind Left
unbind Right
unbind C-Up
unbind C-Down
unbind C-Left
unbind C-Right
Eu vou te mostrar meu .tmux.conf
como umexemplo
E por falar nisso, não se esqueça de remapear o 'horizontal-split'
caso você o tenha na hchave, pois isso irá interferir no seu pane-resize
e pane-switch
.