tmux-config
tmux-config copied to clipboard
unable to window tab glyphs
After installing powerline patched fonts on OSX with iTerm2 , I see the glyphs seem to be broken.
setw -g window-status-current-format "#[fg=$color_dark,bg=$color_main]$separator_powerline_right#[default]#I:#W# #[fg=$color_main,bg=$color_dark]$separator_powerline_right#[default]"

I need to make the adjustment as shown below removing #[default] to see the glyph arrows
setw -g window-status-current-format "#[fg=$color_dark,bg=$color_main]$separator_powerline_right #I:#W #[fg=$color_main,bg=$color_dark]$separator_powerline_right#[default]"

thoughts?
I had the same problem after upgrading to tmux. thank you.
me too thanks for the fix
white color is still gone, the tab text now shows in black color, this with the latest version of tmux
thanks for the fix. change the line to this and you get the white text color:
setw -g window-status-current-format "#[fg=$color_dark,bg=$color_main]$separator_powerline_right#[fg=$color_light] #I:#W# #[fg=$color_main,bg=$color_dark]$separator_powerline_right#[default]"
Thanks great fix, just what i needed