Add a new display-panes command, with two options (display-panes-colour and

display-panes-time), which displays a visual indication of the number of each
pane.
This commit is contained in:
Nicholas Marriott
2009-08-31 20:46:19 +00:00
parent 8102ec3be5
commit 04319964b9
13 changed files with 179 additions and 6 deletions

View File

@ -632,6 +632,9 @@ server_check_timers(struct client *c)
if (gettimeofday(&tv, NULL) != 0)
fatal("gettimeofday");
if (c->flags & CLIENT_IDENTIFY && timercmp(&tv, &c->identify_timer, >))
server_clear_identify(c);
if (c->message_string != NULL && timercmp(&tv, &c->message_timer, >))
status_message_clear(c);
@ -809,6 +812,7 @@ server_handle_client(struct client *c)
wp = c->session->curw->window->active; /* could die */
status_message_clear(c);
server_clear_identify(c);
if (c->prompt_string != NULL) {
status_prompt_key(c, key);
continue;