mirror of
https://github.com/tmate-io/tmate.git
synced 2025-08-18 09:30:04 +02:00
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:
10
window.c
10
window.c
@@ -1,4 +1,4 @@
|
||||
/* $Id: window.c,v 1.110 2009-10-09 13:07:04 tcunha Exp $ */
|
||||
/* $Id: window.c,v 1.111 2009-10-11 23:38:16 tcunha Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@@ -172,7 +172,7 @@ winlink_stack_push(struct winlink_stack *stack, struct winlink *wl)
|
||||
return;
|
||||
|
||||
winlink_stack_remove(stack, wl);
|
||||
SLIST_INSERT_HEAD(stack, wl, sentry);
|
||||
TAILQ_INSERT_HEAD(stack, wl, sentry);
|
||||
}
|
||||
|
||||
void
|
||||
@@ -182,10 +182,10 @@ winlink_stack_remove(struct winlink_stack *stack, struct winlink *wl)
|
||||
|
||||
if (wl == NULL)
|
||||
return;
|
||||
|
||||
SLIST_FOREACH(wl2, stack, sentry) {
|
||||
|
||||
TAILQ_FOREACH(wl2, stack, sentry) {
|
||||
if (wl2 == wl) {
|
||||
SLIST_REMOVE(stack, wl, winlink, sentry);
|
||||
TAILQ_REMOVE(stack, wl, sentry);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user