为什么我的许多 tmux 设置命令都会出错?

为什么我的许多 tmux 设置命令都会出错?

获取大量无效选项错误:

例如

.tmux.conf:36: invalid option: window-status-fg

答案1

许多选项在最近的版本中发生了变化。

这是更改指南。
您会注意到,-style所有这些都被添加了,然后该行的其余部分的格式发生了其他变化。

在此输入图像描述

这是供您复制和粘贴的文本

setw -g window-status-style fg=cyan    
setw -ga window-status-style bg=default
setw -ga window-status-style dim 
setw -g window-status-current-style fg=white     
setw -ga window-status-current-style bg=black
setw -ga window-status-current-style bright
set -g pane-border-style fg=green      
set -ga pane-border-style bg=black
set -g pane-active-border-style fg=white
set -ga pane-active-border-style bg=yellow
set -g message-style fg=white          
set -ga message-style bg=black
set -ga message-style bright
set-window-option -g window-status-current-style bg=black 
set-window-option -ga window-status-current-style fg=yellow 
set-window-option -ga window-status-current-style dim

相关内容