summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2023-08-17 18:01:09 +0100
committerThomas Adam <thomas@xteddy.org>2023-08-17 18:01:09 +0100
commite3a8b8434cf656164d74ae115ebccd432144ed2c (patch)
tree45b6061279b4b6155e0b6dd921b42a9341d3e98d /tmux.h
parent3d93b0c52ecd6d5b321fef777d49c360c9fbe069 (diff)
parent8636848e6348bb0e38cd6aaaadbe61e15181bc8f (diff)
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index fd3e261a..88c5f953 100644
--- a/tmux.h
+++ b/tmux.h
@@ -799,11 +799,15 @@ enum style_range_type {
STYLE_RANGE_NONE,
STYLE_RANGE_LEFT,
STYLE_RANGE_RIGHT,
- STYLE_RANGE_WINDOW
+ STYLE_RANGE_PANE,
+ STYLE_RANGE_WINDOW,
+ STYLE_RANGE_SESSION,
+ STYLE_RANGE_USER
};
struct style_range {
enum style_range_type type;
u_int argument;
+ char string[16];
u_int start;
u_int end; /* not included */
@@ -830,6 +834,7 @@ struct style {
enum style_range_type range_type;
u_int range_argument;
+ char range_string[16];
enum style_default_type default_type;
};