From abb55b63d0813ed9ea14542cdcb262ab754a4ff5 Mon Sep 17 00:00:00 2001 From: pmcc Date: Sun, 2 Aug 2026 19:12:54 -0400 Subject: [PATCH] fix(tmux): escape session name in status-right so it updates on session switch set -gF expands the format string at config load time, baking in the session name. Escaping as ##S keeps it dynamic; ##H was already escaped. --- dot_tmux.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dot_tmux.conf b/dot_tmux.conf index 22a507c..eb895e6 100644 --- a/dot_tmux.conf +++ b/dot_tmux.conf @@ -64,6 +64,6 @@ set -g status-format[1] "" set -g status 2 set -g status-justify "left" set -g status-left " " -set -gF status-right "#[fg=#{@thm_crust},bg=#{@thm_teal}] #S / ##H " +set -gF status-right "#[fg=#{@thm_crust},bg=#{@thm_teal}] ##S / ##H " run '~/.tmux/plugins/tpm/tpm'