mirror of
https://github.com/tmate-io/tmate.git
synced 2025-08-16 08:38:12 +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:
6
server.c
6
server.c
@ -1,4 +1,4 @@
|
||||
/* $Id: server.c,v 1.197 2009-10-11 23:30:28 tcunha Exp $ */
|
||||
/* $Id: server.c,v 1.198 2009-10-11 23:38:16 tcunha Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -248,6 +248,7 @@ server_start(char *path)
|
||||
ARRAY_INIT(&dead_clients);
|
||||
ARRAY_INIT(&sessions);
|
||||
ARRAY_INIT(&dead_sessions);
|
||||
TAILQ_INIT(&session_groups);
|
||||
mode_key_init_trees();
|
||||
key_bindings_init();
|
||||
utf8_build();
|
||||
@ -1246,10 +1247,11 @@ server_check_window(struct window *w)
|
||||
if (wl->window != w)
|
||||
continue;
|
||||
if (session_detach(s, wl)) {
|
||||
server_destroy_session(s);
|
||||
server_destroy_session_group(s);
|
||||
break;
|
||||
}
|
||||
server_redraw_session(s);
|
||||
server_status_session_group(s);
|
||||
goto restart;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user