답변:
당신은 또한 사용할 수 있습니다
tmux refresh-client -S
새로 고침 간격에 의존하지 않고 상태 표시 줄을 수동으로 새로 고칩니다. 예를 들어 창을 전환 할 때 이벤트 중심 업데이트 방법으로 사용합니다. 내 .tmux.conf에서 다음을 변경했습니다.
bind -r k select-pane -U
bind -r j select-pane -D
bind -r l select-pane -R
bind -r h select-pane -L
에:
bind -r k select-pane -U\; refresh-client -S
bind -r j select-pane -D\; refresh-client -S
bind -r l select-pane -R\; refresh-client -S
bind -r h select-pane -L\; refresh-client -S
추신 : 차이가 나는 경우, 현재 tmux 1.8을 사용하고 있습니다.