回答:
あなたも使うことができます
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
ps:違いが出る場合は、現在tmux 1.8を使用しています。