diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-10-11 23:38:16 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-10-11 23:38:16 +0000 |
commit | 6a1ebb11df452e570b430ba16192c38b0e3a0f90 (patch) | |
tree | f2165e41abebbb503f4f8feba689468128a96cf7 /tmux.1 | |
parent | 1fd3a405e69c7478ab29d29cd56ac5b23f2f4f71 (diff) | |
download | rtmux-6a1ebb11df452e570b430ba16192c38b0e3a0f90.tar.gz rtmux-6a1ebb11df452e570b430ba16192c38b0e3a0f90.tar.bz2 rtmux-6a1ebb11df452e570b430ba16192c38b0e3a0f90.zip |
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.
Diffstat (limited to 'tmux.1')
-rw-r--r-- | tmux.1 | 23 |
1 files changed, 22 insertions, 1 deletions
@@ -1,4 +1,4 @@ -.\" $Id: tmux.1,v 1.182 2009-10-11 23:30:28 tcunha Exp $ +.\" $Id: tmux.1,v 1.183 2009-10-11 23:38:16 tcunha Exp $ .\" .\" Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> .\" @@ -409,6 +409,7 @@ Lock all clients attached to .Op Fl d .Op Fl n Ar window-name .Op Fl s Ar session-name +.Op Fl t Ar target-session .Op Ar command .Xc .D1 (alias: Ic new ) @@ -425,6 +426,26 @@ are the name of and command to execute in the initial window. If run from a terminal, any .Xr termios 4 special characters are saved and used for new windows in the new session. +.Pp +If +.Fl t +is given, the new session is +.Em grouped +with +.Ar target-session . +This means they share the same set of windows - all windows from +.Ar target-session +are linked to the new session and any subsequent new windows or windows being +closed are applied to both sessions. +The current and previous window and any session options remain independent and +either session may be killed without affecting the other. +Giving +.Fl n +or +.Ar command +are invalid if +.Fl t +is used. .It Ic refresh-client Op Fl t Ar target-client .D1 (alias: Ic refresh ) Refresh the current client if bound to a key, or a single client if one is given |