Answers:
您尚未设置窗口活动背景色,仅设置了活动面板边框,请尝试:
set-window-option -g window-status-current-bg red
~/.tmux.conf
并tmux
在新的终端中启动。
xterm-256color
set-window-option -g window-status-current-fg 'white'
set-window-option -g window-status-current-style bg=red
在2.9版中,您应该将此选项更改为以下内容:
# Active window title color
setw -g window-status-current-style fg=black,bg=white
这里有一个带有恰当解释的论点:https://github.com/tmux/tmux/issues/1689
以及常见问题解答:https : //github.com/tmux/tmux/wiki/FAQ#how-do-i-translate--fg--bg-and--attr-options-into--style-options