Open
Description
To reproduce use this configuration:
set-option -g status 2
set -g status-right '#{prefix_highlight}'
set-option -g "status-format[1]" "#{prefix_highlight}"
set-option -g @plugin tmux-plugins/tpm
set-option -g @plugin tmux-plugins/tmux-prefix-highlight
set-option -g @prefix_highlight_show_copy_mode on
set-option -g @prefix_highlight_show_sync_mode on
run-shell ~/.tmux/plugins/tpm/tpm
I would expect the #{prefix_highlight}
everywhere, not just the first status line.
Activity
abraxas86 commentedon Sep 28, 2024
I'm trying to figure out this same kind of problem with a different plugin... I think it's because of how they're set up, but I'm not sure if this is a plugin-specific thing or a tpm thing.
Like the other project I'm looking at, the code seems to explicitly call
status-left
andstatus-right
but there's nothing in there forformat-status[i]
I would have expected the plugins to just return values, but apparently they're more complex than that