mirror of
https://github.com/tmux/tmux.git
synced 2026-07-10 03:19:31 +00:00
945339b443affdaaca260605e15b5a3b9a3c6e16
options with a single foo-style option. For example:
set -g status-fg yellow
set -g status-bg red
set -g status-attr blink
Becomes:
set -g status-style fg=yellow,bg=red,blink
The -a flag to set can be used to add to rather than replace a style. So:
set -g status-bg red
Becomes:
set -ag status-style bg=red
Currently this is fully backwards compatible (all *-{fg,bg,attr} options
remain) but the plan is to deprecate them over time.
From Tiago Cunha.
Description
tmux source code
Languages
C
78.1%
Shell
13.3%
Roff
6.3%
Yacc
1.1%
M4
0.7%
Other
0.4%