From 88517ceebb6cf31f661a1e265b2db6cbf61f09eb Mon Sep 17 00:00:00 2001 From: nicm Date: Thu, 5 Oct 2017 13:29:18 +0000 Subject: Add support for the xterm(1) title stack, from Brad Town, GitHub issue 1075. --- tmux.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index c3524cb8..a661a6da 100644 --- a/tmux.h +++ b/tmux.h @@ -660,8 +660,10 @@ struct screen_sel { }; /* Virtual screen. */ +struct screen_titles; struct screen { char *title; + struct screen_titles *titles; struct grid *grid; /* grid data */ @@ -2082,6 +2084,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 *); -- cgit