我的文件中有以下内容tmux.conf
:
set -g window-status-style fg=colour234,bg=colour252
set -g window-status-activity-style fg=red,bg=yellow
set -g window-status-current-style fg=yellow,bg=green
set -g window-status-bell-style fg=colour234,bg=colour252
但每当我获取文件或设置另一个会话时,它都会忽略我的设置。我做错了什么吗?
如果我明确设置格式:
set -g window-status-format "#[fg=colour234,bg=colour252]#[fg=colour235,bg=colour252,bold] #I: #W "
set -g window-status-current-format "#[fg=colour234,bg=blue]#[fg=black,bg=blue,noreverse,bold] #I: #W "
然后这种变化就会反映出来。忽略颜色不同的事实,因为我只想要一些变化时显而易见的东西。
我正在使用 tmux 1.9a
→ tmux -V
tmux 1.9a
答案1
事实证明您仍然必须明确设置format
。
set -g window-status-format "#I: #W "
编辑后,设置style
按预期工作。