Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

By default, tmux seems to be using

C-b, Left to move left a pane
C-b, Right to move right pane
...

I want to use

C-b, h to move left a pane
C-b, l to move right a pane 
...

Here's my current attempt in .tmux.config:

unbind Left
unbind Right
unbind Up
unbind Down

bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R

I would appreciate any assistance.

share|improve this question
This is what I use here and it works, tmux version 1.6. – Thor Oct 12 '12 at 14:52

migrated from stackoverflow.com Oct 8 '12 at 15:10

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.