diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2010-01-03 12:51:05 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2010-01-03 12:51:05 +0000 |
commit | 7e4f8b45b64b0cbe889c5846806038c4c45c36e8 (patch) | |
tree | c7c25f6c65f3dac1a9b40fe5e4e8cf8f23bdb6e0 /tmux.h | |
parent | 121ba57b55adc9aff5b131cfac310ac41c0491ba (diff) | |
download | rtmux-7e4f8b45b64b0cbe889c5846806038c4c45c36e8.tar.gz rtmux-7e4f8b45b64b0cbe889c5846806038c4c45c36e8.tar.bz2 rtmux-7e4f8b45b64b0cbe889c5846806038c4c45c36e8.zip |
Options to set the colour of the pane borders, with different colours for the
active pane.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1083,6 +1083,7 @@ struct client { #define CLIENT_BAD 0x80 #define CLIENT_IDENTIFY 0x100 #define CLIENT_DEAD 0x200 +#define CLIENT_BORDERS 0x400 int flags; struct event identify_timer; @@ -1589,6 +1590,7 @@ void server_redraw_session_group(struct session *); void server_status_session(struct session *); void server_status_session_group(struct session *); void server_redraw_window(struct window *); +void server_redraw_window_borders(struct window *); void server_status_window(struct window *); void server_lock(void); void server_lock_session(struct session *); @@ -1749,7 +1751,7 @@ void screen_write_cell(struct screen_write_ctx *, const struct grid_cell *, const struct utf8_data *); /* screen-redraw.c */ -void screen_redraw_screen(struct client *, int); +void screen_redraw_screen(struct client *, int, int); void screen_redraw_pane(struct client *, struct window_pane *); /* screen.c */ |