summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/style.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Tidy up some includes.nicm2014-10-201-1/+3
|
* Handle colour 8 properly in the 256 colour palette, from Timothy Allen.nicm2014-05-081-5/+5
|
* Fix -fg/-bg/-style with 256 colour terminals.nicm2014-02-221-7/+21
|
* Allow replacing each of the many sets of separate foo-{fg,bg,attr}nicm2014-01-281-0/+224
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.