2008-06-15 08:01:54 +00:00
|
|
|
.\" $Id: tmux.1,v 1.33 2008-06-15 08:01:54 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
|
2008-06-06 15:23:44 +00:00
|
|
|
.Op Fl f Ar file
|
2007-11-09 15:23:28 +00:00
|
|
|
.Op Fl S Ar socket-path
|
2008-06-06 15:23:44 +00:00
|
|
|
.Op Ar command Op Ar flags
|
2007-11-09 15:23:28 +00:00
|
|
|
.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
|
2008-06-06 20:07:56 +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
|
2008-06-06 20:07:56 +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 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.
|
2008-06-06 15:23:44 +00:00
|
|
|
.It Fl V
|
|
|
|
Print program version.
|
|
|
|
.It Fl f Ar file
|
2008-06-06 20:07:56 +00:00
|
|
|
Specify an alternative configuration file.
|
|
|
|
By default,
|
2008-06-06 15:23:44 +00:00
|
|
|
.Nm
|
|
|
|
will look for a config file at ~/.tmux.conf.
|
|
|
|
.It Fl S Ar socket-path
|
|
|
|
Specify 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 Ar command Op Ar flags
|
2007-11-09 15:23:28 +00:00
|
|
|
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.
|
2008-06-06 15:23:44 +00:00
|
|
|
If no command and flags is specified, the
|
2008-06-03 05:35:51 +00:00
|
|
|
.Ic new-session
|
|
|
|
command is assumed.
|
2007-11-09 15:23:28 +00:00
|
|
|
.Pp
|
|
|
|
.El
|
2007-12-16 17:18:43 +00:00
|
|
|
.Sh QUICK START
|
|
|
|
To create a new tmux session running
|
2007-12-18 17:49:02 +00:00
|
|
|
.Xr vi 1 :
|
2007-12-16 17:18:43 +00:00
|
|
|
.Pp
|
|
|
|
.Dl $ tmux new-session vi
|
|
|
|
.Pp
|
|
|
|
Most commands have a shorter form, known as an alias.
|
2008-06-06 20:07:56 +00:00
|
|
|
For new-session, this is
|
2007-12-16 17:18:43 +00:00
|
|
|
.Ic new :
|
|
|
|
.Pp
|
|
|
|
.Dl $ tmux new vi
|
|
|
|
.Pp
|
|
|
|
Alternatively, the shortest unambiguous form of a command is accepted.
|
|
|
|
If there are several options, they are listed:
|
|
|
|
.Bd -literal -offset indent
|
|
|
|
$ tmux n
|
|
|
|
ambiguous command: n, could be: new-session, new-window, next-window
|
|
|
|
$
|
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
Within an active session, a new window may be created by typing
|
|
|
|
.Ql ^B
|
|
|
|
(ctrl-B, known as the prefix key)
|
|
|
|
followed by the
|
|
|
|
.Ql c
|
|
|
|
key.
|
|
|
|
.Pp
|
2008-06-06 20:07:56 +00:00
|
|
|
Windows may be navigated with:
|
2007-12-16 17:18:43 +00:00
|
|
|
.Ql ^B 0
|
|
|
|
(to select window 0),
|
|
|
|
.Ql ^B 1
|
|
|
|
(to select window 1), and so on;
|
|
|
|
.Ql ^B n
|
|
|
|
to select the next window; and
|
|
|
|
.Ql ^B p
|
|
|
|
to select the previous window.
|
|
|
|
.Pp
|
|
|
|
A session may be detached using
|
|
|
|
.Ql ^B d
|
|
|
|
and reattached with:
|
|
|
|
.Pp
|
|
|
|
.Dl $ tmux attach-session
|
|
|
|
.Pp
|
2008-06-06 20:07:56 +00:00
|
|
|
Typing
|
2007-12-16 17:18:43 +00:00
|
|
|
.Ql ^B \&?
|
|
|
|
lists the current key bindings in the current window; up and down may be used
|
|
|
|
to navigate the list or
|
|
|
|
.Ql Q
|
|
|
|
to exit from it.
|
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
|
2008-06-15 08:01:54 +00:00
|
|
|
prefix key,
|
2007-11-12 16:11:57 +00:00
|
|
|
.Ql ^B
|
|
|
|
(ctrl-B) 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
|
2008-06-06 20:07:56 +00:00
|
|
|
.Ql \&?
|
|
|
|
by default).
|
|
|
|
Key bindings may be changed with the
|
2007-11-09 16:18:08 +00:00
|
|
|
.Ic bind-key
|
|
|
|
and
|
|
|
|
.Ic unbind-key
|
|
|
|
commands.
|
2007-11-24 14:21:43 +00:00
|
|
|
.Sh HISTORY
|
|
|
|
.Nm
|
|
|
|
maintains a configurable history buffer for each window.
|
|
|
|
By default, up to 2000 lines are kept, this can be altered with the
|
|
|
|
.Ic history-limit
|
|
|
|
option (see the
|
|
|
|
.Ic set-option
|
|
|
|
command below).
|
|
|
|
.Sh MODES
|
|
|
|
A
|
|
|
|
.Nm
|
|
|
|
window may be in one of several modes.
|
|
|
|
The default permits direct access to the terminal attached to the window.
|
|
|
|
The others are:
|
|
|
|
.Bl -tag -width Ds
|
|
|
|
.It Em output mode
|
|
|
|
This is entered when a command which produces output, such as
|
|
|
|
.Ic list-keys ,
|
|
|
|
is executed from a key binding.
|
|
|
|
The
|
|
|
|
.Ql up ,
|
|
|
|
.Ql down ,
|
|
|
|
.Ql page-up
|
2008-06-06 20:07:56 +00:00
|
|
|
and
|
2007-11-24 14:21:43 +00:00
|
|
|
.Ql page-down
|
|
|
|
keys or
|
|
|
|
.Xr vi 1
|
|
|
|
style
|
2008-06-05 21:25:00 +00:00
|
|
|
.Ql j
|
|
|
|
and
|
|
|
|
.Ql k
|
2007-11-24 14:21:43 +00:00
|
|
|
keys may be used to scroll the output up and down.
|
|
|
|
The
|
|
|
|
.Ql q
|
|
|
|
key will exit output mode.
|
|
|
|
.It Em scroll mode
|
|
|
|
This is entered with the
|
|
|
|
.Ic scroll-mode
|
|
|
|
command (bound to
|
|
|
|
.Ql =
|
|
|
|
by default) and permits the window history buffer to be inspected.
|
|
|
|
In addition to the commands supported by output mode, the left and right arrow
|
|
|
|
keys, or
|
|
|
|
.Ql h
|
|
|
|
and
|
|
|
|
.Ql l ,
|
|
|
|
will scroll left and right.
|
|
|
|
.It Em copy mode
|
2008-06-05 15:55:59 +00:00
|
|
|
This permits a section of a window or its history to be copied to the
|
2007-11-24 14:21:43 +00:00
|
|
|
.Em paste buffer
|
|
|
|
for later insertion into another window.
|
|
|
|
The navigation keys move the cursor around the window, scrolling as necessary.
|
2007-11-26 20:36:30 +00:00
|
|
|
In addition,
|
|
|
|
.Ql ^A
|
|
|
|
and
|
|
|
|
.Ql ^E
|
2008-06-06 20:07:56 +00:00
|
|
|
(or the
|
2008-06-05 21:25:00 +00:00
|
|
|
.Xr vi 1
|
2008-06-06 20:07:56 +00:00
|
|
|
style
|
2008-06-05 21:25:00 +00:00
|
|
|
.Ql 0
|
|
|
|
and
|
|
|
|
.Ql $
|
2008-06-06 20:07:56 +00:00
|
|
|
keys) move to the start and end of the line; the space key begins a selection;
|
2008-06-05 21:25:00 +00:00
|
|
|
and the enter key or
|
2007-11-24 14:21:43 +00:00
|
|
|
.Ql ^W
|
|
|
|
copies the selection to the paste buffer and exits copy mode.
|
|
|
|
.Pp
|
|
|
|
This mode is entered with the
|
|
|
|
.Ic copy-mode
|
|
|
|
command, bound to
|
2008-06-06 20:07:56 +00:00
|
|
|
.Ql [
|
2007-11-24 18:05:39 +00:00
|
|
|
by default.
|
2007-11-24 14:21:43 +00:00
|
|
|
.El
|
2007-11-09 15:23:28 +00:00
|
|
|
.Sh COMMANDS
|
2008-06-02 21:36:51 +00:00
|
|
|
This section contains a list of the commands supported by
|
|
|
|
.Nm .
|
|
|
|
There are some flags shared by several commands; these are:
|
|
|
|
.Bl -tag -width "XXXXXXXXXXXX"
|
|
|
|
.It Fl c Ar client-tty
|
|
|
|
Apply command to the client on the given tty.
|
|
|
|
Clients may be listed with the
|
|
|
|
.Ic list-clients
|
|
|
|
command.
|
|
|
|
.It Fl s Ar session-name
|
|
|
|
Apply command to the session named
|
|
|
|
.Ar session-name .
|
|
|
|
If it is omitted and
|
|
|
|
.Nm
|
|
|
|
is invoked from a running
|
2007-11-09 16:04:29 +00:00
|
|
|
.Nm
|
2008-06-05 15:55:59 +00:00
|
|
|
client, the session containing the client is connected to will be used;
|
2008-06-02 21:36:51 +00:00
|
|
|
otherwise, if only one session exists, it is chosen, or if multiple sessions
|
|
|
|
exist, an error is generated.
|
|
|
|
.El
|
|
|
|
.Pp
|
|
|
|
The following commands are available:
|
2007-11-09 16:04:29 +00:00
|
|
|
.Bl -tag -width Ds
|
|
|
|
.It Xo Ic attach-session
|
|
|
|
.Op Fl d
|
2008-06-06 20:07:56 +00:00
|
|
|
.Op Fl t Ar target-session
|
2007-11-09 16:04:29 +00:00
|
|
|
.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.
|
2007-11-09 16:04:29 +00:00
|
|
|
.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 .
|
2007-11-24 14:21:43 +00:00
|
|
|
.It Xo Ic copy-mode
|
2008-06-06 20:07:56 +00:00
|
|
|
.Op Fl t Ar target-window
|
2007-11-24 14:21:43 +00:00
|
|
|
.Xc
|
|
|
|
Enter copy mode.
|
2007-11-16 21:12:31 +00:00
|
|
|
.It Xo Ic detach-client
|
2008-06-06 20:07:56 +00:00
|
|
|
.Op Fl t Ar target-client
|
2007-11-09 16:04:29 +00:00
|
|
|
.Xc
|
2007-11-09 16:08:08 +00:00
|
|
|
.D1 (alias: Ic detach )
|
2007-11-16 21:12:31 +00:00
|
|
|
Detach the current client if bound to a key, or the specified client with
|
2008-06-06 20:07:56 +00:00
|
|
|
.Fl t .
|
|
|
|
.It Xo Ic has-session
|
|
|
|
.Op Fl t Ar target-session
|
2007-11-09 16:04:29 +00:00
|
|
|
.Xc
|
2007-11-09 16:08:08 +00:00
|
|
|
.D1 (alias: Ic has )
|
2008-06-06 20:07:56 +00:00
|
|
|
Report an error and exit with 1 if the specified session does not exist.
|
|
|
|
If it does exist, exit with 0.
|
2008-06-03 05:35:51 +00:00
|
|
|
.It Xo Ic kill-server
|
|
|
|
.Xc
|
|
|
|
Kill the
|
|
|
|
.Nm
|
|
|
|
server and clients and destroy all sessions.
|
2007-11-12 14:21:41 +00:00
|
|
|
.It Xo Ic kill-session
|
2008-06-06 20:07:56 +00:00
|
|
|
.Op Fl t Ar target-session
|
2007-11-12 14:21:41 +00:00
|
|
|
.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.
|
2008-06-06 20:07:56 +00:00
|
|
|
.It Xo Ic kill-window
|
|
|
|
.Op Fl t Ar target-window
|
2007-11-09 16:04:29 +00:00
|
|
|
.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
|
2008-06-06 20:07:56 +00:00
|
|
|
.Ar target-window ,
|
2007-11-12 16:09:08 +00:00
|
|
|
removing it from any sessions to which it is linked.
|
2008-06-06 20:07:56 +00:00
|
|
|
.It Xo Ic last-window
|
|
|
|
.Op Fl t Ar target-session
|
2007-11-09 16:04:29 +00:00
|
|
|
.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.
|
2008-06-06 20:07:56 +00:00
|
|
|
If no
|
|
|
|
.Ar target-session
|
|
|
|
is specified, select to the last window of the current session.
|
|
|
|
.It Xo Ic link-window
|
2007-11-17 08:21:54 +00:00
|
|
|
.Op Fl dk
|
2008-06-06 20:07:56 +00:00
|
|
|
.Op Fl s Ar src-window
|
|
|
|
.Op Fl t Ar dst-window
|
2007-11-09 16:04:29 +00:00
|
|
|
.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
|
2008-06-06 20:07:56 +00:00
|
|
|
.Ar src-window
|
|
|
|
to the specified
|
|
|
|
.Ar dst-window .
|
|
|
|
If
|
|
|
|
.Ar dst-window
|
|
|
|
is specified and no such window exists, the
|
|
|
|
.Ar src-window
|
|
|
|
is linked there.
|
|
|
|
If
|
2007-11-17 08:21:54 +00:00
|
|
|
.Fl k
|
2008-06-06 20:07:56 +00:00
|
|
|
is given and
|
|
|
|
.Ar dst-window
|
|
|
|
exists, it is killed, otherwise an error is generated.
|
2007-11-17 08:21:54 +00:00
|
|
|
If
|
|
|
|
.Fl d
|
|
|
|
is given, the newly linked window is not selected.
|
2008-06-06 20:07:56 +00:00
|
|
|
.It Xo Ic list-clients
|
2007-11-09 16:04:29 +00:00
|
|
|
.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.
|
2008-06-06 20:07:56 +00:00
|
|
|
.It Xo Ic list-keys
|
2007-11-09 16:04:29 +00:00
|
|
|
.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.
|
2008-06-06 20:07:56 +00:00
|
|
|
.It Xo Ic list-sessions
|
2007-11-09 16:04:29 +00:00
|
|
|
.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.
|
2007-11-09 16:04:29 +00:00
|
|
|
.It Xo Ic list-windows
|
2008-06-11 06:19:56 +00:00
|
|
|
.Op Fl t Ar target-session
|
2007-11-09 16:04:29 +00:00
|
|
|
.Xc
|
2007-11-09 16:08:08 +00:00
|
|
|
.D1 (alias: Ic lsw )
|
2008-06-11 06:19:56 +00:00
|
|
|
List windows in the current session or in
|
|
|
|
.Ar target-session .
|
2007-11-09 16:04:29 +00:00
|
|
|
.It Xo Ic new-session
|
|
|
|
.Op Fl d
|
2008-06-02 21:36:51 +00:00
|
|
|
.Op Fl s Ar session-name
|
2008-06-11 06:19:56 +00:00
|
|
|
.Op Fl n Ar window-name
|
2007-11-09 16:04:29 +00:00
|
|
|
.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.
|
2008-06-06 20:07:56 +00:00
|
|
|
.It Xo Ic new-window
|
2007-11-09 16:04:29 +00:00
|
|
|
.Op Fl d
|
2008-06-11 06:19:56 +00:00
|
|
|
.Op Fl t Ar target-window
|
|
|
|
.Op Fl n Ar window-name
|
2007-11-09 16:04:29 +00:00
|
|
|
.Op Ar command
|
|
|
|
.Xc
|
2007-11-09 16:08:08 +00:00
|
|
|
.D1 (alias: Ic neww )
|
2008-06-06 20:07:56 +00:00
|
|
|
Create a new window.
|
|
|
|
If
|
2007-11-12 16:09:08 +00:00
|
|
|
.Fl d
|
|
|
|
is given, the session does not make the new window the current window.
|
2008-06-11 06:19:56 +00:00
|
|
|
.Ar target-window
|
|
|
|
represents the window to be created.
|
2007-11-12 16:09:08 +00:00
|
|
|
.Ar command
|
|
|
|
is the command to execute.
|
|
|
|
If
|
|
|
|
.Ar command
|
|
|
|
is not specified, the default command is used.
|
2007-11-12 20:42:53 +00:00
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Ev TERM
|
|
|
|
environment variable must be set to
|
|
|
|
.Dq screen
|
2008-06-05 21:25:00 +00:00
|
|
|
for all programs running
|
2007-11-12 20:42:53 +00:00
|
|
|
.Em inside
|
|
|
|
.Nm .
|
|
|
|
New windows will automatically have
|
|
|
|
.Dq TERM=screen
|
|
|
|
added to their environment, but care must be taken not to reset this in shell
|
|
|
|
start-up files.
|
2007-11-12 16:09:08 +00:00
|
|
|
.It Xo Ic next-window
|
2008-06-11 06:19:56 +00:00
|
|
|
.Op Fl t Ar target-session
|
2007-11-09 16:04:29 +00:00
|
|
|
.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.
|
2007-11-24 14:21:43 +00:00
|
|
|
.It Xo Ic paste-buffer
|
2008-06-11 06:19:56 +00:00
|
|
|
.Op Fl t Ar target-window
|
2007-11-24 14:21:43 +00:00
|
|
|
.Xc
|
|
|
|
.D1 (alias: Ic paste )
|
|
|
|
Insert the contents of the paste buffer into the current window.
|
|
|
|
Ignored unless executed via a key binding.
|
2008-06-06 20:07:56 +00:00
|
|
|
.It Xo Ic previous-window
|
2008-06-11 06:19:56 +00:00
|
|
|
.Op Fl t Ar target-session
|
2007-11-09 16:04:29 +00:00
|
|
|
.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.
|
2007-11-16 21:12:31 +00:00
|
|
|
.It Xo Ic refresh-client
|
2008-06-11 06:19:56 +00:00
|
|
|
.Op Fl t Ar target-client
|
2007-11-09 16:04:29 +00:00
|
|
|
.Xc
|
2007-11-09 16:08:08 +00:00
|
|
|
.D1 (alias: Ic refresh )
|
2008-06-11 06:19:56 +00:00
|
|
|
Refresh the current client if bound to a key, or a single client if one is given
|
2007-11-16 21:12:31 +00:00
|
|
|
with
|
2008-06-11 06:19:56 +00:00
|
|
|
.Fl t .
|
2007-11-09 17:05:42 +00:00
|
|
|
.It Xo Ic rename-session
|
2008-06-11 06:19:56 +00:00
|
|
|
.Op Fl t Ar target-session
|
2007-11-09 17:05:42 +00:00
|
|
|
.Ar new-name
|
2007-11-09 16:04:29 +00:00
|
|
|
.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 .
|
2007-11-09 16:04:29 +00:00
|
|
|
.It Xo Ic rename-window
|
2008-06-11 06:19:56 +00:00
|
|
|
.Op Fl t Ar target-window
|
2007-11-09 16:04:29 +00:00
|
|
|
.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
|
2008-06-11 06:19:56 +00:00
|
|
|
.Ar target-window
|
2007-11-12 16:09:08 +00:00
|
|
|
if specifed, to
|
|
|
|
.Ar new-name .
|
2007-11-21 20:26:51 +00:00
|
|
|
.It Xo Ic scroll-mode
|
2008-06-11 06:19:56 +00:00
|
|
|
.Op Fl t Ar target-window
|
2007-11-21 20:26:51 +00:00
|
|
|
.Xc
|
2007-11-24 14:21:43 +00:00
|
|
|
Enter scroll mode.
|
2008-06-06 20:07:56 +00:00
|
|
|
.It Xo Ic select-window
|
2008-06-11 06:19:56 +00:00
|
|
|
.Op Fl t Ar target-window
|
2007-11-09 16:04:29 +00:00
|
|
|
.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
|
2008-06-11 06:19:56 +00:00
|
|
|
.Ar target-window .
|
2008-06-06 20:07:56 +00:00
|
|
|
.It Xo Ic send-keys
|
2008-06-11 06:19:56 +00:00
|
|
|
.Op Fl t Ar target-window
|
2008-06-02 21:36:51 +00:00
|
|
|
.Ar key Ar ...
|
2008-06-01 20:20:25 +00:00
|
|
|
.Xc
|
|
|
|
Send a key or keys to a window.
|
|
|
|
Each argument
|
|
|
|
.Ar key
|
|
|
|
is the name of the key (such as
|
|
|
|
.Ql ^A
|
|
|
|
or
|
|
|
|
.Ql npage
|
|
|
|
) to send; if the string is not recognised as a key, it is sent as a series of
|
|
|
|
characters.
|
2008-06-05 15:55:59 +00:00
|
|
|
All arguments are sent sequentially from first to last.
|
2007-11-09 16:04:29 +00:00
|
|
|
.It Xo Ic send-prefix
|
2008-06-11 06:19:56 +00:00
|
|
|
.Op Fl t Ar target-window
|
2007-11-09 16:04:29 +00:00
|
|
|
.Xc
|
2007-11-12 16:09:08 +00:00
|
|
|
Send the prefix key to a window as if it was pressed.
|
2007-11-12 16:40:56 +00:00
|
|
|
.It Xo Ic set-option
|
2008-06-11 06:19:56 +00:00
|
|
|
.Op Fl t Ar target-window
|
2007-11-09 16:04:29 +00:00
|
|
|
.Ar option Ar value
|
|
|
|
.Xc
|
2007-11-09 16:08:08 +00:00
|
|
|
.D1 (alias: Ic set )
|
2008-06-06 20:07:56 +00:00
|
|
|
Set an option.
|
|
|
|
Possible options are:
|
2007-11-12 16:09:08 +00:00
|
|
|
.Bl -tag -width Ds
|
2008-06-11 06:19:56 +00:00
|
|
|
.It Xo Ic bell-action
|
|
|
|
.Op Ic any | Ic none | Ic current
|
|
|
|
.Xc
|
|
|
|
Set action on window bell.
|
|
|
|
.Ic any
|
|
|
|
means a bell in any window linked to a session causes a bell in the current
|
|
|
|
window of that session,
|
|
|
|
.Ic none
|
|
|
|
means all bells are ignored and
|
|
|
|
.Ic 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 .
|
2007-11-24 14:21:43 +00:00
|
|
|
.It Ic history-limit Ar lines
|
|
|
|
Set the maximum number of lines held in window history.
|
|
|
|
This setting applies only to new windows - existing window histories are not
|
|
|
|
resized and retain the limit at the point they were created.
|
2008-06-15 08:01:54 +00:00
|
|
|
.It Ic prefix-key Ar key
|
2008-06-11 06:19:56 +00:00
|
|
|
Set the current prefix key.
|
2008-06-06 20:07:56 +00:00
|
|
|
.It Xo Ic status
|
2007-11-12 20:46:46 +00:00
|
|
|
.Op Ic on | Ic off
|
2007-11-12 16:09:08 +00:00
|
|
|
.Xc
|
|
|
|
Show or hide the status line.
|
2008-06-11 06:19:56 +00:00
|
|
|
.It Ic status-bg Ar colour
|
|
|
|
Set status line background colour, where
|
2007-11-12 16:09:08 +00:00
|
|
|
.Ar colour
|
|
|
|
is one of:
|
2007-11-12 20:46:46 +00:00
|
|
|
.Ic black ,
|
|
|
|
.Ic red ,
|
|
|
|
.Ic green ,
|
|
|
|
.Ic yellow ,
|
|
|
|
.Ic blue ,
|
|
|
|
.Ic magenta ,
|
|
|
|
.Ic cyan ,
|
|
|
|
.Ic white
|
|
|
|
or
|
|
|
|
.Ic default .
|
2008-06-11 06:19:56 +00:00
|
|
|
.It Ic status-fg Ar colour
|
|
|
|
Set status line foreground colour.
|
2007-11-12 16:09:08 +00:00
|
|
|
.El
|
2008-06-03 05:35:51 +00:00
|
|
|
.It Xo Ic start-server
|
|
|
|
.Xc
|
|
|
|
Start the
|
|
|
|
.Nm
|
|
|
|
server, if not already running, without creating any sessions.
|
2008-06-06 20:07:56 +00:00
|
|
|
.It Xo Ic swap-window
|
2008-06-11 06:19:56 +00:00
|
|
|
.Op Fl d
|
|
|
|
.Op Fl s Ar src-window
|
|
|
|
.Op Fl t Ar dst-window
|
2007-11-09 16:04:29 +00:00
|
|
|
.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
|
2008-06-11 06:19:56 +00:00
|
|
|
.Ar src-window .
|
2007-11-09 16:04:29 +00:00
|
|
|
.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 .
|
2008-06-02 21:36:51 +00:00
|
|
|
.It Xo Ic unlink-window
|
2008-06-11 06:19:56 +00:00
|
|
|
.Op Fl t Ar target-window
|
2007-11-09 16:04:29 +00:00
|
|
|
.Xc
|
2007-11-09 16:08:08 +00:00
|
|
|
.D1 (alias: Ic unlinkw )
|
2008-06-11 06:19:56 +00:00
|
|
|
Unlink
|
|
|
|
.Ar target-window .
|
2007-11-12 16:09:08 +00:00
|
|
|
A window may be unlinked only if it is linked to multiple sessions - windows may
|
|
|
|
not be linked to no sessions.
|
2007-11-09 16:04:29 +00:00
|
|
|
.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
|