Sync OpenBSD patchset 302:

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:
Tiago Cunha
2009-08-31 22:30:15 +00:00
parent 2fe369831c
commit ed3535db8a
12 changed files with 189 additions and 16 deletions

View File

@ -1,4 +1,4 @@
/* $Id: server.c,v 1.176 2009-08-31 22:24:18 tcunha Exp $ */
/* $Id: server.c,v 1.177 2009-08-31 22:30:15 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -635,6 +635,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);
@ -812,6 +815,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;