Sync OpenBSD patchset 371:

Add "grouped sessions" which have independent name, options, current window and
so on but where the linked windows are synchronized (ie creating, killing
windows and so on are mirrored between the sessions). A grouped session may be
created by passing -t to new-session.

Had this around for a while, tested by a couple of people.
This commit is contained in:
Tiago Cunha
2009-10-11 23:38:16 +00:00
parent 1fd3a405e6
commit 6a1ebb11df
19 changed files with 411 additions and 78 deletions

View File

@ -1,4 +1,4 @@
/* $Id: status.c,v 1.121 2009-09-25 17:45:46 tcunha Exp $ */
/* $Id: status.c,v 1.122 2009-10-11 23:38:16 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -516,7 +516,7 @@ status_print(struct session *s, struct winlink *wl, struct grid_cell *gc)
gc->attr = attr;
flag = ' ';
if (wl == SLIST_FIRST(&s->lastw))
if (wl == TAILQ_FIRST(&s->lastw))
flag = '-';
if (wl == s->curw) {
fg = options_get_number(oo, "window-status-current-fg");