From ba9bd88c98c81f25060f051ed983e40f82fdd3ba Mon Sep 17 00:00:00 2001 From: Zhuoran Date: Sat, 28 Dec 2024 03:19:36 -0800 Subject: [PATCH] fix: use the correct option for the left separator for the current window (#450) --- catppuccin_tmux.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/catppuccin_tmux.conf b/catppuccin_tmux.conf index 62947d33..035b9b17 100644 --- a/catppuccin_tmux.conf +++ b/catppuccin_tmux.conf @@ -199,13 +199,13 @@ set -ogqF @catppuccin_window_current_right_separator "#{@catppuccin_window_right set -g @_ctp_w_text_style "#[fg=#{@thm_fg},bg=#{@catppuccin_window_current_text_color}]" %if "#{==:#{@catppuccin_window_number_position},left}" set -gF window-status-current-format \ - "#{E:@_ctp_w_number_style}#{E:@catppuccin_window_left_separator}#{@catppuccin_window_current_number}" + "#{E:@_ctp_w_number_style}#{E:@catppuccin_window_current_left_separator}#{@catppuccin_window_current_number}" set -agF window-status-current-format "#{E:@catppuccin_window_current_middle_separator}" set -agF window-status-current-format \ "#{E:@_ctp_w_text_style}#{@catppuccin_window_current_text}#{@_ctp_w_flags}#{E:@catppuccin_window_current_right_separator}" %else set -gF window-status-current-format \ - "#{E:@_ctp_w_text_style}#{E:@catppuccin_window_left_separator}#{E:@_ctp_w_text_style}#{@catppuccin_window_current_text}#{@_ctp_w_flags}" + "#{E:@_ctp_w_text_style}#{E:@catppuccin_window_current_left_separator}#{E:@_ctp_w_text_style}#{@catppuccin_window_current_text}#{@_ctp_w_flags}" set -agF window-status-current-format "#{E:@catppuccin_window_current_middle_separator}" set -agF window-status-current-format \ "#{E:@_ctp_w_number_style} #{@catppuccin_window_current_number}#{E:@catppuccin_window_current_right_separator}"