Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

tmux up-pane/down-pane missing

I'd like to rebind the action of changing the active pane in tmux. In version 1.1, I did it like this:

bind-key -n C-] up-pane
bind-key -n C-[ down-pane

I've upgraded to to version 1.3 recently, and now I get the following error message:

/home/myuser/.tmux.conf: 17: unknown command: up-pane                                                         
/home/myuser/.tmux.conf: 18: unknown command: down-pane

Have these commands been renamed in the new version? I can't find anything which looks similar in the tmux man pages.

like image 657
oneself Avatar asked Oct 08 '10 14:10

oneself


1 Answers

bind-key -n C-] select-pane -t :.-
bind-key -n C-[ select-pane -t :.+
like image 140
livibetter Avatar answered Nov 10 '22 04:11

livibetter