문제

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.

도움이 되었습니까?

해결책

bind-key -n C-] select-pane -t :.-
bind-key -n C-[ select-pane -t :.+
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top