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-rename-window.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-rename-window.c')
-rw-r--r-- | cmd-rename-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-rename-window.c b/cmd-rename-window.c index 1037b25a..6f4f9ab8 100644 --- a/cmd-rename-window.c +++ b/cmd-rename-window.c @@ -53,7 +53,7 @@ cmd_rename_window_exec(struct cmd *self, struct cmd_ctx *ctx) wl->window->name = xstrdup(data->arg); options_set_number(&wl->window->options, "automatic-rename", 0); - server_status_session(s); + server_status_window(wl->window); return (0); } |