tmux/tmux.1

353 lines
8.4 KiB
Groff
Raw Normal View History

2007-11-12 16:09:08 +00:00
.\" $Id: tmux.1,v 1.8 2007-11-12 16:09:08 nicm Exp $
2007-11-09 15:23:28 +00:00
.\"
.\" Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
.\"
.\" Permission to use, copy, modify, and distribute this software for any
.\" purpose with or without fee is hereby granted, provided that the above
.\" copyright notice and this permission notice appear in all copies.
.\"
.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
.\" WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
.\" 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 November 9, 2007
.Dt TMUX 1
.Os
.Sh NAME
.Nm tmux
.Nd "terminal multiplexer"
.Sh SYNOPSIS
.Nm tmux
.Bk -words
.Op Fl vV
.Op Fl S Ar socket-path
.Op Fl s Ar session-name
.Ar command
.Op Ar arguments
.Ek
.Sh DESCRIPTION
.Nm
is a terminal multiplexer; it enables a number of terminals (or windows) to be
accessed and controlled from a single terminal.
.Pp
.Nm
2007-11-09 15:29:59 +00:00
runs as a server-client system. A server is created automatically when
necessary and holds a number of
2007-11-09 15:23:28 +00:00
.Em sessions ,
each of which may have a number of
.Em windows
2007-11-12 16:09:08 +00:00
linked to it. Any number of
2007-11-12 14:21:41 +00:00
.Em clients
may connect to a session, or the server
may be controlled by issuing commands with
.Nm .
Communication takes place through a socket, by default placed in
2007-11-09 15:23:28 +00:00
.Pa /tmp .
.Pp
The options are as follows:
.Bl -tag -width "XXXXXXXXXXXX"
.It Fl S Ar socket-path
This specifies an alternative path to the server socket.
The default is
.Pa /tmp/tmux-UID ,
where
.Em UID
is the uid of the user who invoked
.Nm .
.It Fl s Ar session-name
Apply command to the session named
.Ar session-name .
This option does not apply to all commands.
If it is omitted and
.Nm
is invoked from a running
.Nm
client, the session the containing client is connected to will be used;
otherwise, if only one session exists, it is chosen, or if multiple sessions
exist, an error is generated.
.It Fl v
Request verbose logging.
This option may be specified multiple times for increasing verbosity.
Log messages will be saved into
.Pa tmux-client-PID.log
and
.Pa tmux-server-PID.log
files in the current directory, where
.Em PID
is the pid of the server or client process.
.It Ar command Op Ar arguments
This specifies one of a set of commands used to control
.Nm ,
2007-11-09 16:18:08 +00:00
and described in the following sections.
2007-11-09 15:23:28 +00:00
.Pp
.El
2007-11-09 16:18:08 +00:00
.Sh KEY BINDINGS
.Nm
may be controlled from an attached client by using a key combination of a
prefix,
.Ql ^A
2007-11-09 17:05:42 +00:00
(ctrl-A) by default, followed by a command key.
2007-11-09 16:18:08 +00:00
.Pp
Some of the default key bindings include:
.Pp
.Bl -tag -width Ds -compact
.It Ql d
Detach current client.
.It Ql c
Create new window.
.It Ql n
Change to next window in the current session.
.It Ql p
Change to previous window in the current session.
.It Ql l
Move to last (previously selected) window in the current session.
.It Ql \&?
List current key bindings.
.El
.Pp
A complete list may be obtained with the
.Ic list-keys
command (bound to
.Ql \&?
by default). Key bindings may be changed with the
.Ic bind-key
and
.Ic unbind-key
commands.
2007-11-09 15:23:28 +00:00
.Sh COMMANDS
.Nm
supports the following commands:
.Bl -tag -width Ds
.It Xo Ic attach-session
.Op Fl d
.Xc
2007-11-09 16:08:08 +00:00
.D1 (alias: Ic attach )
2007-11-12 16:09:08 +00:00
Create a new client in the current terminal and attach it to a session.
If
.Fl d
is specified, any other clients attached to the session are detached.
.It Xo Ic bind-key
.Ar key Ar command Op Ar arguments
.Xc
2007-11-09 16:08:08 +00:00
.D1 (alias: Ic bind )
2007-11-12 16:09:08 +00:00
Bind key
.Ar key
to
.Ar command .
.It Xo Ic detach-session
.Op Fl a
.Xc
2007-11-09 16:08:08 +00:00
.D1 (alias: Ic detach )
2007-11-12 16:09:08 +00:00
Detach the current client if bound to a key; otherwise, if
.Fl a
is given, detach all clietns attached to the session.
.It Xo Ic has-session
.Xc
2007-11-09 16:08:08 +00:00
.D1 (alias: Ic has )
2007-11-12 16:09:08 +00:00
Report an error and exit with 1 if the specified session does not exist. If it
does exist, exit with 0.
2007-11-12 14:21:41 +00:00
.It Xo Ic kill-session
.Xc
2007-11-12 16:09:08 +00:00
Destroy the given session, closing any windows linked to it and no other
sessions, and detaching all clients attached to it.
.It Xo Ic kill-window
.Op Fl i Ar index
.Xc
2007-11-09 16:08:08 +00:00
.D1 (alias: Ic killw )
2007-11-12 16:09:08 +00:00
Kill the current window or the window at
.Ar index ,
removing it from any sessions to which it is linked.
.It Xo Ic last-window
.Xc
2007-11-09 16:08:08 +00:00
.D1 (alias: Ic last )
2007-11-12 16:09:08 +00:00
Select the last (previously selected) window.
.It Xo Ic link-window
2007-11-12 16:09:08 +00:00
.Op Fl i Ar destination-index
.Ar source-name Ar source-index
.Xc
2007-11-09 16:08:08 +00:00
.D1 (alias: Ic linkw )
2007-11-12 16:09:08 +00:00
Link the window at
.Ar source-index
in session
.Ar source-name
into the specified session. If
.Ar destination-index
is specified and no window exists with that index, the window is linked at
that index.
If a window already exists at
.Ar destination-index ,
an error is generated.
.It Xo Ic list-clients
.Xc
2007-11-09 16:08:08 +00:00
.D1 (alias: Ic lsc )
2007-11-12 16:09:08 +00:00
List all clients attached to the server.
.It Xo Ic list-keys
.Xc
2007-11-09 16:08:08 +00:00
.D1 (alias: Ic lsk )
2007-11-12 16:09:08 +00:00
List all key bindings.
.It Xo Ic list-sessions
.Xc
2007-11-09 16:08:08 +00:00
.D1 (alias: Ic ls )
2007-11-12 16:09:08 +00:00
List all sessions managed by the server.
.It Xo Ic list-windows
.Xc
2007-11-09 16:08:08 +00:00
.D1 (alias: Ic lsw )
2007-11-12 16:09:08 +00:00
List all windows.
.It Xo Ic new-session
.Op Fl d
.Op Fl s Ar session-name
.Op Fl n Ar window-name
.Op Ar command
.Xc
2007-11-09 16:08:08 +00:00
.D1 (alias: Ic new )
2007-11-12 16:09:08 +00:00
Create a new session with name
.Ar session-name .
The new session is attached to the current terminal unless
.Fl d
is given.
.Ar window-name
and
.Ar command
are the name of and command to execute in the initial window.
.It Xo Ic new-window
.Op Fl d
.Op Fl i Ar index
.Op Fl n Ar name
.Op Ar command
.Xc
2007-11-09 16:08:08 +00:00
.D1 (alias: Ic neww )
2007-11-12 16:09:08 +00:00
Create a new window. If
.Fl d
is given, the session does not make the new window the current window.
.Ar index
and
.Ar name
are the index of the new window in the session and the name of the new window.
.Ar command
is the command to execute.
If
.Ar index
is not specified, the first free index is used.
If
.Ar command
is not specified, the default command is used.
.It Xo Ic next-window
.Xc
2007-11-09 16:08:08 +00:00
.D1 (alias: Ic next )
2007-11-12 16:09:08 +00:00
Move to the next window in the session.
.It Xo Ic previous-window
.Xc
2007-11-09 16:08:08 +00:00
.D1 (alias: Ic prev )
2007-11-12 16:09:08 +00:00
Move to the previous window in the session.
.It Xo Ic refresh-session
.Op Fl a
.Xc
2007-11-09 16:08:08 +00:00
.D1 (alias: Ic refresh )
2007-11-12 16:09:08 +00:00
Refresh the display of clients attached to a session.
If bound to a key, only the current client is refreshed; otherwise if
.Fl a
is given, all clients attached to the session is refreshed.
2007-11-09 17:05:42 +00:00
.It Xo Ic rename-session
.Ar new-name
.Xc
2007-11-09 16:08:08 +00:00
.D1 (alias: Ic rename )
2007-11-12 16:09:08 +00:00
Rename the session to
.Ar new-name .
.It Xo Ic rename-window
.Op Fl i Ar index
.Ar new-name
.Xc
2007-11-09 16:08:08 +00:00
.D1 (alias: Ic renamew )
2007-11-12 16:09:08 +00:00
Rename the current window, or the window at
.Ar index
if specifed, to
.Ar new-name .
.It Xo Ic select-window
.Ar index
.Xc
2007-11-09 16:08:08 +00:00
.D1 (alias: Ic selectw )
2007-11-12 16:09:08 +00:00
Select the window at
.Ar index .
.It Xo Ic send-prefix
.Xc
2007-11-12 16:09:08 +00:00
Send the prefix key to a window as if it was pressed.
This is ignored unless bound to a key.
.It Xo Ic set-option )
.Ar option Ar value
.Xc
2007-11-09 16:08:08 +00:00
.D1 (alias: Ic set )
2007-11-12 16:09:08 +00:00
Set an option. Possible options are:
.Bl -tag -width Ds
.It Ic prefix Ar key
Set the current prefix key.
.It Xo Ic status
.Op Ar on | Ar off
.Xc
Show or hide the status line.
.It Ic status-fg Ar colour
Set status line foreground colour, where
.Ar colour
is one of:
.Ar black ,
.Ar red ,
.Ar green ,
.Ar yellow ,
.Ar blue ,
.Ar magenta ,
.Ar cyan ,
.Ar white or
.Ar default .
.It Ic status-bg Ar colour
Set status line backgroun colour.
.It Xo Ic bell-action
.Op Ar any | Ar none | Ar current
.Xc
Set action on window bell.
.Ar any
means a bell in any window linked to a session causes a bell in the current
window of that session,
.Ar none
means all bells are ignored and
.Ar current
means only bell in windows other than the current window are ignored.
.It Ic default-command Ar command
Sets the command used for new windows (if not specified when the window is
created) to
.Ar command .
The default is
.Dq exec $SHELL .
.El
.It Xo Ic swap-window
2007-11-12 16:09:08 +00:00
.Op Fl i Ar destination-index
.Ar source-name Ar source-index
.Xc
2007-11-09 16:08:08 +00:00
.D1 (alias: Ic swapw )
2007-11-12 16:09:08 +00:00
This is similar to
.Ic link-window ,
except the source and destination windows are swapped.
It is an error if no window exists at
.Ar destination-index .
.It Xo Ic unbind-key
.Ar key
.Xc
2007-11-09 16:08:08 +00:00
.D1 (alias: Ic unbind )
2007-11-12 16:09:08 +00:00
Unbind the key bound to
.Ar key .
.It Xo Ic unlink-window
.Op Fl i Ar index
.Xc
2007-11-09 16:08:08 +00:00
.D1 (alias: Ic unlinkw )
2007-11-12 16:09:08 +00:00
Unlink the window at
.Ar index .
A window may be unlinked only if it is linked to multiple sessions - windows may
not be linked to no sessions.
.El
2007-11-09 15:23:28 +00:00
.Sh SEE ALSO
.Xr pty 4
.Sh AUTHORS
.An Nicholas Marriott Aq nicm@users.sourceforge.net