diff options
author | nicm <nicm> | 2015-08-28 12:16:28 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-08-28 12:16:28 +0000 |
commit | 75d10058a41d8e95dda126d460a119a9037e9345 (patch) | |
tree | 86acff4bc6433f9e8f76c5d241a2e1c8833368eb /tmux.h | |
parent | 18d4802a7bcfc08948dccfd9084144b043ac591b (diff) | |
download | rtmux-75d10058a41d8e95dda126d460a119a9037e9345.tar.gz rtmux-75d10058a41d8e95dda126d460a119a9037e9345.tar.bz2 rtmux-75d10058a41d8e95dda126d460a119a9037e9345.zip |
Run status update on a per-client timer at status-interval.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1207,7 +1207,7 @@ struct client { struct event repeat_timer; - struct timeval status_timer; + struct event status_timer; struct screen status; #define CLIENT_TERMINAL 0x1 @@ -1893,6 +1893,8 @@ int server_set_stdin_callback(struct client *, void (*)(struct client *, void server_unzoom_window(struct window *); /* status.c */ +void status_timer_start(struct client *); +void status_timer_start_all(void); int status_at_line(struct client *); struct window *status_get_window_at(struct client *, u_int); int status_redraw(struct client *); |