diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2011-03-03 08:51:48 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2011-03-03 08:51:48 +0000 |
commit | db775783609e0c62e612f4d246c7dce97f12ddc1 (patch) | |
tree | 05f1b7e2d7842151184ac32f501ba97e408edc81 /usr.bin/tmux/tmux.1 | |
parent | a5ac9fede6f5c9cb157cac99c2ff0750e5495482 (diff) |
Add a -P option to detach to HUP the client's parent process (usually
causing it to exit as well).
Diffstat (limited to 'usr.bin/tmux/tmux.1')
-rw-r--r-- | usr.bin/tmux/tmux.1 | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/usr.bin/tmux/tmux.1 b/usr.bin/tmux/tmux.1 index 05fcee6c72f..7252027d677 100644 --- a/usr.bin/tmux/tmux.1 +++ b/usr.bin/tmux/tmux.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: tmux.1,v 1.210 2011/01/14 23:49:23 nicm Exp $ +.\" $OpenBSD: tmux.1,v 1.211 2011/03/03 08:51:47 nicm Exp $ .\" .\" Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> .\" @@ -14,7 +14,7 @@ .\" IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING .\" OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: January 14 2011 $ +.Dd $Mdocdate: March 3 2011 $ .Dt TMUX 1 .Os .Sh NAME @@ -550,10 +550,17 @@ If no server is started, .Ic attach-session will attempt to start it; this will fail unless sessions are created in the configuration file. -.It Ic detach-client Op Fl t Ar target-client +.It Xo Ic detach-client +.Op Fl P +.Op Fl t Ar target-client +.Xc .D1 (alias: Ic detach ) Detach the current client if bound to a key, or the specified client with .Fl t . +If +.Fl P +is given, send SIGHUP to the parent process of the client, typically causing it +to exit. .It Ic has-session Op Fl t Ar target-session .D1 (alias: Ic has ) Report an error and exit with 1 if the specified session does not exist. |