Answers:
你也可以用
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。