From d42fb43f4f8e21dcc37e9b090842f61e39e8d6f4 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 4 Jun 2009 18:48:24 +0000 Subject: Proper support for tab stops (\033H etc), using a bitstring(3). Makes another vttest test happy. --- tmux.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index b2521ac2..645e5003 100644 --- a/tmux.h +++ b/tmux.h @@ -26,6 +26,7 @@ #include #include +#include #include #include #include @@ -507,6 +508,8 @@ struct screen { int mode; + bitstr_t *tabs; + struct screen_sel sel; }; @@ -1397,6 +1400,7 @@ void screen_redraw_status(struct client *); void screen_init(struct screen *, u_int, u_int, u_int); void screen_reinit(struct screen *); void screen_free(struct screen *); +void screen_reset_tabs(struct screen *); void screen_set_title(struct screen *, const char *); void screen_resize(struct screen *, u_int, u_int); void screen_set_selection( -- cgit