mirror of
https://github.com/tmux/tmux.git
synced 2026-09-16 18:21:58 +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
73.6%
Shell
18.6%
Roff
5.7%
Yacc
0.9%
M4
0.7%
Other
0.4%