我在synchronize-panes
窗口选项的tmux配置中绑定了一个键。我还想用相同的按键显示相同选项的当前状态。到目前为止,我已经尝试过:
# one or more of the following
bind-key S run-shell "tmux setw synchronize-panes; TMUX_STATUS=`tmux showw synchronize-panes`;tmux display-message $TMUX_STATUS"
bind-key S "setw synchronize-panes; display-message `showw synchronize-panes`"
bind-key S run-shell "tmux setw synchronize-panes; TMUX_STATUS=$(tmux showw synchronize-panes); tmux display-message $TMUX_STATUS"
答案 0 :(得分:11)
您可以通过.tmux.conf中的以下绑定来实现此目的
使用tmux 2.4进行测试
# Toggle synchronize-panes with ^S m
bind S \
set synchronize-panes \;\
display "Sync #{?synchronize-panes,ON,OFF}"
您可以在手册页中找到有关tmux变量和格式的详细信息。 https://www.systutorials.com/docs/linux/man/1-tmux/