diff options
author | 2010-01-03 12:51:05 +0000 | |
---|---|---|
committer | 2010-01-03 12:51:05 +0000 | |
commit | b9b22aa83303ccf463728d50f9505a51470b3117 (patch) | |
tree | 3f4735bad806835dd51b1b9bfc516eddfa1c0d74 /usr.bin/tmux/tmux.h | |
parent | disk cache mode page (diff) | |
download | wireguard-openbsd-b9b22aa83303ccf463728d50f9505a51470b3117.tar.xz wireguard-openbsd-b9b22aa83303ccf463728d50f9505a51470b3117.zip |
Options to set the colour of the pane borders, with different colours for the
active pane.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 4907d3fd30b..259401d0537 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.196 2009/12/17 17:39:56 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.197 2010/01/03 12:51:05 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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 */ |