Hi, all
I have a tmux config as following:
```
set -g @thm_dark_yellow '#FFA500'
set -g @thm_black '#000000'
set -g @thm_visual_grey '#808080'
set -g @thm_white '#FFFFFF'
set -ogq @window-status-current-index "#[bg=#{@thm_dark_yellow},fg=#{@thm_black},bold] #I"
set -ogq @window-status-current-text "#[bg=#{@thm_black},fg=#{@thm_white},bold] #W#{?#F,:#F,} "
setw -g window-status-current-format "#{E:@window-status-current-index} #{E:@window-status-current-text}"
```
When I change the background color of window-status-current-text, and use source-file to reload, it does not work. There might be something wrong with the config, but I cannot figure it out, can anyone help me?
Thanks in advance.