답변:
해결책은 다음과 같이 수정 ~/.tmux.conf
하는 것입니다.
# Start windows and panes at 1, not 0
set -g base-index 1
setw -g pane-base-index 1
편집 : 기본 색인과 달리 pane-base-index는 창 옵션이므로 @Jogusa가 지적했듯이 setw를 사용해야합니다.
setw
창 설정에서 : setw -g pane-base-index 1
책에서 .tmux.conf 참조 : media.pragprog.com/titles/bhtmux/code/config/tmux.conf
setw
set-window-option
또는의 별칭입니다 set -w
. 변경 pane-base-index
은 창 옵션입니다. TMUX 맨 페이지를 참조 -> manpages.ubuntu.com/manpages/precise/man1/tmux.1.html