diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-10-10 10:02:48 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-10-10 10:02:48 +0000 |
commit | 9dd72b958366c44b6d62680836983c58d2a0a42f (patch) | |
tree | 6690d38f157a2e357c9aef70f72149f4ce244cae /cmd-choose-session.c | |
parent | b7d031cc92a1d9ac3ca8c2a71b76b0a78ea77465 (diff) | |
download | rtmux-9dd72b958366c44b6d62680836983c58d2a0a42f.tar.gz rtmux-9dd72b958366c44b6d62680836983c58d2a0a42f.tar.bz2 rtmux-9dd72b958366c44b6d62680836983c58d2a0a42f.zip |
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.
Diffstat (limited to 'cmd-choose-session.c')
-rw-r--r-- | cmd-choose-session.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/cmd-choose-session.c b/cmd-choose-session.c index 7bc34853..b9c7c258 100644 --- a/cmd-choose-session.c +++ b/cmd-choose-session.c @@ -54,7 +54,9 @@ cmd_choose_session_exec(struct cmd *self, struct cmd_ctx *ctx) struct cmd_choose_session_data *cdata; struct winlink *wl; struct session *s; + struct session_group *sg; u_int i, idx, cur; + char tmp[64]; if (ctx->curclient == NULL) { ctx->error(ctx, "must be run interactively"); @@ -76,10 +78,18 @@ cmd_choose_session_exec(struct cmd *self, struct cmd_ctx *ctx) cur = idx; idx++; + sg = session_group_find(s); + if (sg == NULL) + *tmp = '\0'; + else { + idx = session_group_index(sg); + xsnprintf(tmp, sizeof tmp, " (group %u)", idx); + } + window_choose_add(wl->window->active, i, - "%s: %u windows [%ux%u]%s", s->name, + "%s: %u windows [%ux%u]%s%s", s->name, winlink_count(&s->windows), s->sx, s->sy, - s->flags & SESSION_UNATTACHED ? "" : " (attached)"); + tmp, s->flags & SESSION_UNATTACHED ? "" : " (attached)"); } cdata = xmalloc(sizeof *cdata); |