aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/tmux.h b/tmux.h
index adc020d5..9cb38546 100644
--- a/tmux.h
+++ b/tmux.h
@@ -664,8 +664,10 @@ struct screen_sel {
};
/* Virtual screen. */
+struct screen_titles;
struct screen {
char *title;
+ struct screen_titles *titles;
struct grid *grid; /* grid data */
@@ -2086,6 +2088,8 @@ void screen_reset_tabs(struct screen *);
void screen_set_cursor_style(struct screen *, u_int);
void screen_set_cursor_colour(struct screen *, const char *);
void screen_set_title(struct screen *, const char *);
+void screen_push_title(struct screen *);
+void screen_pop_title(struct screen *);
void screen_resize(struct screen *, u_int, u_int, int);
void screen_set_selection(struct screen *,
u_int, u_int, u_int, u_int, u_int, struct grid_cell *);