mirror of
https://github.com/tmate-io/tmate.git
synced 2025-08-19 09:52:06 +02:00
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:
4
server.c
4
server.c
@@ -247,6 +247,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();
|
||||
@@ -1243,10 +1244,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