mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 13:37:12 +00:00
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:
29
server-fn.c
29
server-fn.c
@ -263,3 +263,32 @@ server_kill_window(struct window *w)
|
||||
}
|
||||
recalculate_sizes();
|
||||
}
|
||||
|
||||
void
|
||||
server_set_identify(struct client *c)
|
||||
{
|
||||
struct timeval tv;
|
||||
int delay;
|
||||
|
||||
delay = options_get_number(&c->session->options, "display-panes-time");
|
||||
tv.tv_sec = delay / 1000;
|
||||
tv.tv_usec = (delay % 1000) * 1000L;
|
||||
|
||||
if (gettimeofday(&c->identify_timer, NULL) != 0)
|
||||
fatal("gettimeofday");
|
||||
timeradd(&c->identify_timer, &tv, &c->identify_timer);
|
||||
|
||||
c->flags |= CLIENT_IDENTIFY;
|
||||
c->tty.flags |= (TTY_FREEZE|TTY_NOCURSOR);
|
||||
server_redraw_client(c);
|
||||
}
|
||||
|
||||
void
|
||||
server_clear_identify(struct client *c)
|
||||
{
|
||||
if (c->flags & CLIENT_IDENTIFY) {
|
||||
c->flags &= ~CLIENT_IDENTIFY;
|
||||
c->tty.flags &= ~(TTY_FREEZE|TTY_NOCURSOR);
|
||||
server_redraw_client(c);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user