diff options
author | nicm <nicm> | 2017-10-16 19:30:53 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-10-16 19:30:53 +0000 |
commit | 2f6935a630507351233d6296cc6ec9a08d6a702a (patch) | |
tree | c58a22106fac6aa6999d02329498c5dc77f57989 /tmux.h | |
parent | a5fd5782f87362b8ee31cd5c6975728e112db9ff (diff) | |
download | rtmux-2f6935a630507351233d6296cc6ec9a08d6a702a.tar.gz rtmux-2f6935a630507351233d6296cc6ec9a08d6a702a.tar.bz2 rtmux-2f6935a630507351233d6296cc6ec9a08d6a702a.zip |
Infrastructure for drawing status lines of more than one line in height,
still only one is allowed but this lets tmux draw bigger ones.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1381,6 +1381,7 @@ struct client { #define CLIENT_DOUBLECLICK 0x100000 #define CLIENT_TRIPLECLICK 0x200000 #define CLIENT_SIZECHANGED 0x400000 +#define CLIENT_STATUSOFF 0x800000 int flags; struct key_table *keytable; @@ -1928,6 +1929,7 @@ void status_timer_start(struct client *); void status_timer_start_all(void); void status_update_saved(struct session *s); int status_at_line(struct client *); +u_int status_line_size(struct session *); struct window *status_get_window_at(struct client *, u_int); int status_redraw(struct client *); void printflike(2, 3) status_message_set(struct client *, const char *, ...); |