diff options
author | Thomas Adam <thomas@xteddy.org> | 2019-09-16 00:01:25 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2019-09-16 00:01:25 +0100 |
commit | d346d692ebf36f7d67557c6d777b120dd07f3470 (patch) | |
tree | 4af5940458e051c9b4b44c8d3064f6e156fb0b1c /tmux.h | |
parent | a5e36a4bd6b81678e419dfc18ec6cec30fb415ad (diff) | |
parent | 63e07b245f898af17657c4655f1251aa43e19d0c (diff) | |
download | rtmux-d346d692ebf36f7d67557c6d777b120dd07f3470.tar.gz rtmux-d346d692ebf36f7d67557c6d777b120dd07f3470.tar.bz2 rtmux-d346d692ebf36f7d67557c6d777b120dd07f3470.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -682,6 +682,13 @@ struct style_range { }; TAILQ_HEAD(style_ranges, style_range); +/* Style default. */ +enum style_default_type { + STYLE_DEFAULT_BASE, + STYLE_DEFAULT_PUSH, + STYLE_DEFAULT_POP +}; + /* Style option. */ struct style { struct grid_cell gc; @@ -692,6 +699,8 @@ struct style { enum style_range_type range_type; u_int range_argument; + + enum style_default_type default_type; }; /* Virtual screen. */ @@ -2652,8 +2661,6 @@ int style_parse(struct style *,const struct grid_cell *, const char *style_tostring(struct style *); void style_apply(struct grid_cell *, struct options *, const char *); -void style_apply_update(struct grid_cell *, struct options *, - const char *); int style_equal(struct style *, struct style *); void style_set(struct style *, const struct grid_cell *); void style_copy(struct style *, struct style *); |