[BACK]Return to tmux.1 CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Annotation of src/usr.bin/tmux/tmux.1, Revision 1.102

1.102   ! nicm        1: .\" $OpenBSD: tmux.1,v 1.101 2009/10/10 10:02:48 nicm Exp $
1.1       nicm        2: .\"
                      3: .\" Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
                      4: .\"
                      5: .\" Permission to use, copy, modify, and distribute this software for any
                      6: .\" purpose with or without fee is hereby granted, provided that the above
                      7: .\" copyright notice and this permission notice appear in all copies.
                      8: .\"
                      9: .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     10: .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     11: .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     12: .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     13: .\" WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
                     14: .\" IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
                     15: .\" OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
                     16: .\"
1.101     nicm       17: .Dd $Mdocdate: October 10 2009 $
1.1       nicm       18: .Dt TMUX 1
                     19: .Os
                     20: .Sh NAME
                     21: .Nm tmux
1.6       jmc        22: .Nd terminal multiplexer
1.1       nicm       23: .Sh SYNOPSIS
                     24: .Nm tmux
                     25: .Bk -words
1.90      nicm       26: .Op Fl 28dlquv
1.91      nicm       27: .Op Fl c Ar shell-command
1.1       nicm       28: .Op Fl f Ar file
                     29: .Op Fl L Ar socket-name
                     30: .Op Fl S Ar socket-path
                     31: .Op Ar command Op Ar flags
                     32: .Ek
                     33: .Sh DESCRIPTION
                     34: .Nm
1.59      jmc        35: is a terminal multiplexer:
                     36: it enables a number of terminals to be created, accessed, and
                     37: controlled from a single screen.
1.67      jmc        38: .Nm
                     39: may be detached from a screen
                     40: and continue running in the background,
                     41: then later reattached.
1.1       nicm       42: .Pp
1.60      nicm       43: When
                     44: .Nm
                     45: is started it creates a new
                     46: .Em session
                     47: with a single
                     48: .Em window
                     49: and displays it on screen.
                     50: A status line at the bottom of the screen
                     51: shows information on the current session
                     52: and is used to enter interactive commands.
                     53: .Pp
                     54: A session is a single collection of
                     55: .Em pseudo terminals
                     56: under the management of
                     57: .Nm .
                     58: Each session has one or more
                     59: windows linked to it.
                     60: A window occupies the entire screen
                     61: and may be split into rectangular panes,
                     62: each of which is a separate pseudo terminal
                     63: (the
                     64: .Xr pty 4
                     65: manual page documents the technical details of pseudo terminals).
                     66: Any number of
                     67: .Nm
                     68: instances may connect to the same session,
                     69: and any number of windows may be present in the same session.
                     70: Once all sessions are killed,
                     71: .Nm
                     72: exits.
                     73: .Pp
1.64      nicm       74: Each session is persistent and will survive accidental disconnection
1.66      jmc        75: (such as
1.64      nicm       76: .Xr ssh 1
1.67      jmc        77: connection timeout) or intentional detaching (with the
1.64      nicm       78: .Ql C-b d
                     79: key strokes).
                     80: .Nm
                     81: may be reattached using:
                     82: .Pp
                     83: .Dl $ tmux attach
1.60      nicm       84: .Pp
1.64      nicm       85: In
                     86: .Nm ,
                     87: a session is displayed on screen by a
                     88: .Em client
                     89: and all sessions are managed by a single
                     90: .Em server .
                     91: The server and each client are separate processes which communicate through a
                     92: socket in
                     93: .Pa /tmp .
1.65      nicm       94: .Pp
1.1       nicm       95: The options are as follows:
                     96: .Bl -tag -width "XXXXXXXXXXXX"
                     97: .It Fl 2
                     98: Force
                     99: .Nm
                    100: to assume the terminal supports 256 colours.
                    101: .It Fl 8
                    102: Like
                    103: .Fl 2 ,
1.6       jmc       104: but indicates that the terminal supports 88 colours.
1.91      nicm      105: .It Fl c Ar shell-command
                    106: Execute
                    107: .Ar shell-command
                    108: using the default shell.
                    109: If necessary, the
                    110: .Nm
                    111: server will be started to retrieve the
                    112: .Ic default-shell
                    113: option.
1.1       nicm      114: .It Fl d
                    115: Force
                    116: .Nm
                    117: to assume the terminal supports default colours.
                    118: .It Fl f Ar file
                    119: Specify an alternative configuration file.
                    120: By default,
                    121: .Nm
1.26      nicm      122: loads the system configuration file from
                    123: .Pa /etc/tmux.conf ,
                    124: if present, then looks for a user configuration file at
1.1       nicm      125: .Pa ~/.tmux.conf .
                    126: The configuration file is a set of
                    127: .Nm
                    128: commands which are executed in sequence when the server is first started.
1.61      nicm      129: .Pp
                    130: If a command in the configuration file fails,
                    131: .Nm
                    132: will report an error and exit without executing further commands.
1.82      nicm      133: .It Fl l
                    134: Behave as a login shell.
                    135: This flag currently has no effect and is for compatibility with other shells
                    136: when using tmux as a login shell.
1.1       nicm      137: .It Fl L Ar socket-name
                    138: .Nm
                    139: stores the server socket in a directory under
                    140: .Pa /tmp ;
                    141: the default socket is named
                    142: .Em default .
                    143: This option allows a different socket name to be specified, allowing several
                    144: independent
                    145: .Nm
                    146: servers to be run.
                    147: Unlike
                    148: .Fl S
                    149: a full path is not necessary: the sockets are all created in the same
                    150: directory.
1.2       nicm      151: .Pp
                    152: If the socket is accidentally removed, the
1.6       jmc       153: .Dv SIGUSR1
1.2       nicm      154: signal may be sent to the
                    155: .Nm
                    156: server process to recreate it.
1.4       sobrado   157: .It Fl q
1.6       jmc       158: Prevent the server sending various informational messages, for example when
1.4       sobrado   159: window flags are altered.
1.1       nicm      160: .It Fl S Ar socket-path
                    161: Specify a full alternative path to the server socket.
                    162: If
                    163: .Fl S
                    164: is specified, the default socket directory is not used and any
                    165: .Fl L
                    166: flag is ignored.
                    167: .It Fl u
                    168: .Nm
1.14      nicm      169: attempts to guess if the terminal is likely to support UTF-8 by checking the
                    170: first of the
                    171: .Ev LC_ALL ,
                    172: .Ev LC_CTYPE
                    173: and
1.2       nicm      174: .Ev LANG
1.14      nicm      175: environment variables to be set for the string "UTF-8".
1.5       nicm      176: This is not always correct: the
1.2       nicm      177: .Fl u
                    178: flag explicitly informs
                    179: .Nm
1.6       jmc       180: that UTF-8 is supported.
1.33      nicm      181: .Pp
                    182: If the server is started from a client passed
                    183: .Fl u
                    184: or where UTF-8 is detected, the
                    185: .Ic utf8
                    186: and
                    187: .Ic status-utf8
                    188: options are enabled in the global window and session options respectively.
1.1       nicm      189: .It Fl v
                    190: Request verbose logging.
                    191: This option may be specified multiple times for increasing verbosity.
                    192: Log messages will be saved into
                    193: .Pa tmux-client-PID.log
                    194: and
                    195: .Pa tmux-server-PID.log
                    196: files in the current directory, where
                    197: .Em PID
1.6       jmc       198: is the PID of the server or client process.
1.1       nicm      199: .It Ar command Op Ar flags
                    200: This specifies one of a set of commands used to control
                    201: .Nm ,
1.6       jmc       202: as described in the following sections.
1.59      jmc       203: If no commands are specified, the
1.1       nicm      204: .Ic new-session
                    205: command is assumed.
1.57      jmc       206: .El
1.64      nicm      207: .Sh KEY BINDINGS
                    208: .Nm
                    209: may be controlled from an attached client by using a key combination of a
                    210: prefix key,
                    211: .Ql C-b
                    212: (Ctrl-b) by default, followed by a command key.
                    213: .Pp
                    214: Some of the default key bindings are:
                    215: .Pp
1.67      jmc       216: .Bl -tag -width Ds -offset indent -compact
1.64      nicm      217: .It c
1.65      nicm      218: Create a new window.
1.64      nicm      219: .It d
1.65      nicm      220: Detach the current client.
1.64      nicm      221: .It l
1.65      nicm      222: Move to the previously selected window.
1.64      nicm      223: .It n
1.65      nicm      224: Change to the next window.
1.64      nicm      225: .It p
1.65      nicm      226: Change to the previous window.
                    227: .It &
                    228: Kill the current window.
                    229: .It ,
                    230: Rename the current window.
1.64      nicm      231: .It \&?
1.65      nicm      232: List all key bindings.
1.64      nicm      233: .El
                    234: .Pp
                    235: A complete list may be obtained with the
                    236: .Ic list-keys
                    237: command (bound to
                    238: .Ql \&?
                    239: by default).
                    240: Key bindings may be changed with the
                    241: .Ic bind-key
                    242: and
                    243: .Ic unbind-key
                    244: commands.
1.57      jmc       245: .Sh COMMANDS
                    246: This section contains a list of the commands supported by
                    247: .Nm .
                    248: Most commands accept the optional
                    249: .Fl t
                    250: argument with one of
                    251: .Ar target-client ,
                    252: .Ar target-session
                    253: .Ar target-window ,
                    254: or
                    255: .Ar target-pane .
                    256: These specify the client, session, window or pane which a command should affect.
                    257: .Ar target-client
                    258: is the name of the
                    259: .Xr pty 4
                    260: file to which the client is connected, for example either of
                    261: .Pa /dev/ttyp1
                    262: or
                    263: .Pa ttyp1
                    264: for the client attached to
                    265: .Pa /dev/ttyp1 .
                    266: If no client is specified, the current client is chosen, if possible, or an
                    267: error is reported.
                    268: Clients may be listed with the
                    269: .Ic list-clients
                    270: command.
1.1       nicm      271: .Pp
1.57      jmc       272: .Ar target-session
                    273: is either the name of a session (as listed by the
                    274: .Ic list-sessions
                    275: command) or the name of a client with the same syntax as
                    276: .Ar target-client ,
                    277: in which case the session attached to the client is used.
                    278: When looking for the session name,
                    279: .Nm
                    280: initially searches for an exact match; if none is found, the session names
                    281: are checked for any for which
                    282: .Ar target-session
                    283: is a prefix or for which it matches as an
                    284: .Xr fnmatch 3
                    285: pattern.
                    286: If a single match is found, it is used as the target session; multiple matches
                    287: produce an error.
                    288: If a session is omitted, the current session is used if available; if no
                    289: current session is available, the most recently created is chosen.
1.1       nicm      290: .Pp
1.57      jmc       291: .Ar target-window
                    292: specifies a window in the form
                    293: .Em session Ns \&: Ns Em window .
                    294: .Em session
                    295: follows the same rules as for
                    296: .Ar target-session ,
                    297: and
                    298: .Em window
                    299: is looked for in order: as a window index, for example mysession:1; as an exact
                    300: window name, such as mysession:mywindow; then as an
                    301: .Xr fnmatch 3
                    302: pattern or the start of a window name, such as mysession:mywin* or
                    303: mysession:mywin.
                    304: An empty window name specifies the next unused index if appropriate (for
                    305: example the
                    306: .Ic new-window
                    307: and
                    308: .Ic link-window
                    309: commands)
                    310: otherwise the current window in
                    311: .Em session
                    312: is chosen.
                    313: When the argument does not contain a colon,
                    314: .Nm
                    315: first attempts to parse it as window; if that fails, an attempt is made to
                    316: match a session.
1.1       nicm      317: .Pp
1.57      jmc       318: .Ar target-pane
                    319: takes a similar form to
                    320: .Ar target-window
                    321: but with the optional addition of a period followed by a pane index, for
                    322: example: mysession:mywindow.1.
                    323: If the pane index is omitted, the currently active pane in the specified
                    324: window is used.
                    325: If neither a colon nor period appears,
1.13      nicm      326: .Nm
1.57      jmc       327: first attempts to use the argument as a pane index; if that fails, it is looked
                    328: up as for
                    329: .Ar target-window .
1.15      jmc       330: .Pp
1.57      jmc       331: Multiple commands may be specified together as part of a
                    332: .Em command sequence .
                    333: Each command should be separated by spaces and a semicolon;
                    334: commands are executed sequentially from left to right.
                    335: A literal semicolon may be included by escaping it with a backslash (for
                    336: example, when specifying a command sequence to
                    337: .Ic bind-key ) .
1.13      nicm      338: .Pp
1.57      jmc       339: Examples include:
1.13      nicm      340: .Bd -literal -offset indent
1.57      jmc       341: refresh-client -t/dev/ttyp2
                    342:
                    343: rename-session -tfirst newname
                    344:
                    345: set-window-option -t:0 monitor-activity on
                    346:
                    347: new-window ; split-window -d
1.13      nicm      348: .Ed
1.57      jmc       349: .Sh CLIENTS AND SESSIONS
                    350: The following commands are available:
                    351: .Bl -tag -width Ds
                    352: .It Xo Ic attach-session
                    353: .Op Fl d
                    354: .Op Fl t Ar target-session
                    355: .Xc
                    356: .D1 (alias: Ic attach )
                    357: If run from outside
                    358: .Nm ,
                    359: create a new client in the current terminal and attach it to
                    360: .Ar target-session .
                    361: If used from inside, switch the current client.
                    362: If
                    363: .Fl d
                    364: is specified, any other clients attached to the session are detached.
1.13      nicm      365: .Pp
1.57      jmc       366: If no server is started,
                    367: .Ic attach-session
                    368: will attempt to start it; this will fail unless sessions are created in the
                    369: configuration file.
                    370: .It Ic detach-client Op Fl t Ar target-client
                    371: .D1 (alias: Ic detach )
                    372: Detach the current client if bound to a key, or the specified client with
                    373: .Fl t .
                    374: .It Ic has-session Op Fl t Ar target-session
                    375: .D1 (alias: Ic has )
                    376: Report an error and exit with 1 if the specified session does not exist.
                    377: If it does exist, exit with 0.
                    378: .It Ic kill-server
                    379: Kill the
1.1       nicm      380: .Nm
1.57      jmc       381: server and clients and destroy all sessions.
                    382: .It Ic kill-session Op Fl t Ar target-session
                    383: Destroy the given session, closing any windows linked to it and no other
                    384: sessions, and detaching all clients attached to it.
                    385: .It Ic list-clients
                    386: .D1 (alias: Ic lsc )
                    387: List all clients attached to the server.
                    388: .It Ic list-commands
                    389: .D1 (alias: Ic lscm )
                    390: List the syntax of all commands supported by
                    391: .Nm .
                    392: .It Ic list-sessions
                    393: .D1 (alias: Ic ls )
                    394: List all sessions managed by the server.
1.92      nicm      395: .It Xo Ic lock-client
                    396: .Op Fl t Ar target-client
                    397: .Xc
                    398: Lock
                    399: .Ar target-client ,
                    400: see the
                    401: .Ic lock-server
                    402: command.
                    403: .It Xo Ic lock-session
                    404: .Op Fl t Ar target-session
                    405: .Xc
                    406: Lock all clients attached to
                    407: .Ar target-session .
1.57      jmc       408: .It Xo Ic new-session
                    409: .Op Fl d
                    410: .Op Fl n Ar window-name
                    411: .Op Fl s Ar session-name
1.101     nicm      412: .Op Fl t Ar target-session
1.57      jmc       413: .Op Ar command
                    414: .Xc
                    415: .D1 (alias: Ic new )
                    416: Create a new session with name
                    417: .Ar session-name .
                    418: The new session is attached to the current terminal unless
                    419: .Fl d
                    420: is given.
                    421: .Ar window-name
1.1       nicm      422: and
1.57      jmc       423: .Ar command
                    424: are the name of and command to execute in the initial window.
1.68      nicm      425: .Pp
                    426: If run from a terminal, any
                    427: .Xr termios 4
                    428: special characters are saved and used for new windows in the new session.
1.101     nicm      429: .Pp
                    430: If
                    431: .Fl t
                    432: is given, the new session is
                    433: .Em grouped
                    434: with
                    435: .Ar target-session .
                    436: This means they share the same set of windows - all windows from
                    437: .Ar target-session
                    438: are linked to the new session and any subsequent new windows or windows being
                    439: closed are applied to both sessions.
                    440: The current and previous window and any session options remain independent and
                    441: either session may be killed without affecting the other.
                    442: Giving
                    443: .Fl n
                    444: or
                    445: .Ar command
                    446: are invalid if
                    447: .Fl t
                    448: is used.
1.57      jmc       449: .It Ic refresh-client Op Fl t Ar target-client
                    450: .D1 (alias: Ic refresh )
                    451: Refresh the current client if bound to a key, or a single client if one is given
                    452: with
                    453: .Fl t .
                    454: .It Xo Ic rename-session
                    455: .Op Fl t Ar target-session
                    456: .Ar new-name
                    457: .Xc
                    458: .D1 (alias: Ic rename )
                    459: Rename the session to
                    460: .Ar new-name .
                    461: .It Ic source-file Ar path
                    462: .D1 (alias: Ic source )
                    463: Execute commands from
                    464: .Ar path .
                    465: .It Ic start-server
                    466: .D1 (alias: Ic start )
                    467: Start the
1.1       nicm      468: .Nm
1.57      jmc       469: server, if not already running, without creating any sessions.
                    470: .It Xo Ic suspend-client
                    471: .Op Fl c Ar target-client
                    472: .Xc
                    473: .D1 (alias: Ic suspendc )
                    474: Suspend a client by sending
                    475: .Dv SIGTSTP
                    476: (tty stop).
                    477: .It Xo Ic switch-client
                    478: .Op Fl c Ar target-client
                    479: .Op Fl t Ar target-session
                    480: .Xc
                    481: .D1 (alias: Ic switchc )
                    482: Switch the current session for client
                    483: .Ar target-client
                    484: to
                    485: .Ar target-session .
                    486: .El
                    487: .Sh WINDOWS AND PANES
1.1       nicm      488: A
                    489: .Nm
                    490: window may be in one of several modes.
                    491: The default permits direct access to the terminal attached to the window.
                    492: The others are:
                    493: .Bl -tag -width Ds
                    494: .It Em output mode
                    495: This is entered when a command which produces output, such as
                    496: .Ic list-keys ,
                    497: is executed from a key binding.
                    498: .It Em copy mode
                    499: This permits a section of a window or its history to be copied to a
                    500: .Em paste buffer
                    501: for later insertion into another window.
                    502: This mode is entered with the
                    503: .Ic copy-mode
                    504: command, bound to
                    505: .Ql [
                    506: by default.
                    507: .El
                    508: .Pp
1.6       jmc       509: The keys available depend on whether emacs or vi mode is selected
                    510: (see the
1.1       nicm      511: .Ic mode-keys
                    512: option).
                    513: The following keys are supported as appropriate for the mode:
1.98      nicm      514: .Bl -column "FunctionXXXXXXXXXXXX" "viXXXXXXXXX" "emacs" -offset indent
1.1       nicm      515: .It Sy "Function" Ta Sy "vi" Ta Sy "emacs"
1.27      nicm      516: .It Li "Back to indentation" Ta "^" Ta "M-m"
1.1       nicm      517: .It Li "Clear selection" Ta "Escape" Ta "C-g"
                    518: .It Li "Copy selection" Ta "Enter" Ta "M-w"
                    519: .It Li "Cursor down" Ta "j" Ta "Down"
1.70      nicm      520: .It Li "Cursor left" Ta "h" Ta "Left"
                    521: .It Li "Cursor right" Ta "l" Ta "Right"
                    522: .It Li "Cursor up" Ta "k" Ta "Up"
1.71      nicm      523: .It Li "Delete entire line" Ta "d" Ta "C-u"
1.70      nicm      524: .It Li "Delete to end of line" Ta "D" Ta "C-k"
1.1       nicm      525: .It Li "End of line" Ta "$" Ta "C-e"
1.94      nicm      526: .It Li "Goto line" Ta ":" Ta "g"
1.1       nicm      527: .It Li "Next page" Ta "C-f" Ta "Page down"
                    528: .It Li "Next word" Ta "w" Ta "M-f"
1.70      nicm      529: .It Li "Paste buffer" Ta "p" Ta "C-y"
1.1       nicm      530: .It Li "Previous page" Ta "C-u" Ta "Page up"
                    531: .It Li "Previous word" Ta "b" Ta "M-b"
                    532: .It Li "Quit mode" Ta "q" Ta "Escape"
1.98      nicm      533: .It Li "Scroll down" Ta "C-Down or J" Ta "C-Down"
                    534: .It Li "Scroll up" Ta "C-Up or K" Ta "C-Up"
1.70      nicm      535: .It Li "Search again" Ta "n" Ta "n"
                    536: .It Li "Search backward" Ta "?" Ta "C-r"
                    537: .It Li "Search forward" Ta "/" Ta "C-s"
                    538: .It Li "Start of line" Ta "0" Ta "C-a"
1.1       nicm      539: .It Li "Start selection" Ta "Space" Ta "C-Space"
1.80      nicm      540: .It Li "Transpose chars" Ta "" Ta "C-t"
1.1       nicm      541: .El
                    542: .Pp
1.48      nicm      543: These key bindings are defined in a set of named tables:
                    544: .Em vi-edit
                    545: and
                    546: .Em emacs-edit
                    547: for keys used when line editing at the command prompt;
                    548: .Em vi-choice
                    549: and
                    550: .Em emacs-choice
                    551: for keys used when choosing from lists (such as produced by the
                    552: .Ic window-choose
                    553: command) or in output mode; and
                    554: .Em vi-copy
                    555: and
                    556: .Em emacs-copy
1.97      nicm      557: used in copy mode.
1.48      nicm      558: The tables may be viewed with the
                    559: .Ic list-keys
1.49      nicm      560: command and keys modified or removed with
                    561: .Ic bind-key
                    562: and
                    563: .Ic unbind-key .
1.48      nicm      564: .Pp
1.2       nicm      565: The paste buffer key pastes the first line from the top paste buffer on the
                    566: stack.
1.57      jmc       567: .Pp
                    568: The mode commands are as follows:
                    569: .Bl -tag -width Ds
                    570: .It Xo Ic copy-mode
                    571: .Op Fl u
1.72      nicm      572: .Op Fl t Ar target-pane
1.57      jmc       573: .Xc
                    574: Enter copy mode.
                    575: The
                    576: .Fl u
                    577: option scrolls one page up.
                    578: .El
1.18      nicm      579: .Pp
1.1       nicm      580: Each window displayed by
                    581: .Nm
                    582: may be split into one or more
                    583: .Em panes ;
                    584: each pane takes up a certain area of the display and is a separate terminal.
                    585: A window may be split into panes using the
                    586: .Ic split-window
                    587: command.
1.38      nicm      588: Windows may be split horizontally (with the
                    589: .Fl h
                    590: flag) or vertically.
                    591: Panes may be resized with the
                    592: .Ic resize-pane
1.1       nicm      593: command (bound to
1.38      nicm      594: .Ql C-up ,
                    595: .Ql C-down
                    596: .Ql C-left
                    597: and
                    598: .Ql C-right
1.1       nicm      599: by default), the current pane may be changed with the
                    600: .Ic up-pane
                    601: and
                    602: .Ic down-pane
                    603: commands and the
                    604: .Ic rotate-window
                    605: and
                    606: .Ic swap-pane
1.38      nicm      607: commands may be used to swap panes without changing their position.
                    608: Panes are numbered beginning from zero in the order they are created.
                    609: .Pp
                    610: A number of preset
                    611: .Em layouts
                    612: are available.
                    613: These may be selected with the
                    614: .Ic select-layout
                    615: command or cycled with
                    616: .Ic next-layout
                    617: (bound to
                    618: .Ql C-space
                    619: by default); once a layout is chosen, panes within it may be moved and resized as normal.
1.1       nicm      620: .Pp
                    621: The following layouts are supported:
                    622: .Bl -tag -width Ds
                    623: .It Ic even-horizontal
                    624: Panes are spread out evenly from left to right across the window.
                    625: .It Ic even-vertical
                    626: Panes are spread evenly from top to bottom.
1.2       nicm      627: .It Ic main-horizontal
                    628: A large (main) pane is shown at the top of the window and the remaining panes are
1.6       jmc       629: spread from left to right in the leftover space at the bottom.
1.2       nicm      630: Use the
                    631: .Em main-pane-height
                    632: window option to specify the height of the top pane.
1.1       nicm      633: .It Ic main-vertical
1.2       nicm      634: Similar to
                    635: .Ic main-horizontal
                    636: but the large pane is placed on the left and the others spread from top to
                    637: bottom along the right.
                    638: See the
                    639: .Em main-pane-width
                    640: window option.
1.1       nicm      641: .El
1.8       nicm      642: .Pp
1.57      jmc       643: Commands related to windows and panes are as follows:
                    644: .Bl -tag -width Ds
                    645: .It Xo Ic break-pane
                    646: .Op Fl d
                    647: .Op Fl t Ar target-pane
                    648: .Xc
                    649: .D1 (alias: Ic breakp )
                    650: Break
                    651: .Ar target-pane
                    652: off from its containing window to make it the only pane in a new window.
                    653: If
                    654: .Fl d
                    655: is given, the new window does not become the current window.
1.76      nicm      656: .It Xo
                    657: .Ic choose-client
                    658: .Op Fl t Ar target-window
                    659: .Op Ar template
                    660: .Xc
                    661: Put a window into client choice mode, allowing a client to be selected
                    662: interactively from a list.
                    663: After a client is chosen,
                    664: .Ql %%
                    665: is replaced by the client
                    666: .Xr pty 4
                    667: path in
                    668: .Ar template
                    669: and the result executed as a command.
                    670: If
                    671: .Ar template
                    672: is not given, "detach-client -t '%%'" is used.
1.57      jmc       673: This command works only from inside
                    674: .Nm .
1.76      nicm      675: .It Xo
                    676: .Ic choose-session
                    677: .Op Fl t Ar target-window
                    678: .Op Ar template
                    679: .Xc
                    680: Put a window into session choice mode, where a session may be selected
                    681: interactively from a list.
                    682: When one is chosen,
                    683: .Ql %%
                    684: is replaced by the session name in
                    685: .Ar template
                    686: and the result executed as a command.
                    687: If
                    688: .Ar template
                    689: is not given, "switch-client -t '%%'" is used.
                    690: This command works only from inside
                    691: .Nm .
                    692: .It Xo
                    693: .Ic choose-window
                    694: .Op Fl t Ar target-window
                    695: .Op Ar template
                    696: .Xc
                    697: Put a window into window choice mode, where a window may be chosen
                    698: interactively from a list.
                    699: After a window is selected,
                    700: .Ql %%
                    701: is replaced by the session name and window index in
                    702: .Ar template
                    703: and the result executed as a command.
                    704: If
                    705: .Ar template
                    706: is not given, "select-window -t '%%'" is used.
1.57      jmc       707: This command works only from inside
                    708: .Nm .
1.78      nicm      709: .It Ic display-panes Op Fl t Ar target-client
                    710: .D1 (alias: Ic displayp)
                    711: Display a visible indicator of each pane shown by
                    712: .Ar target-client .
                    713: See the
                    714: .Ic display-panes-time
                    715: and
                    716: .Ic display-panes-colour
                    717: session options.
1.84      nicm      718: While the indicator is on screen, a pane may be selected with the
                    719: .Ql 0
                    720: to
                    721: .Ql 9
                    722: keys.
1.57      jmc       723: .It Ic down-pane Op Fl t Ar target-pane
                    724: .D1 (alias: Ic downp )
                    725: Move down a pane.
                    726: .It Xo Ic find-window
                    727: .Op Fl t Ar target-window
                    728: .Ar match-string
                    729: .Xc
                    730: .D1 (alias: Ic findw )
                    731: Search for the
                    732: .Xr fnmatch 3
                    733: pattern
                    734: .Ar match-string
                    735: in window names, titles, and visible content (but not history).
                    736: If only one window is matched, it'll be automatically selected, otherwise a
                    737: choice list is shown.
                    738: This command only works from inside
1.1       nicm      739: .Nm .
1.57      jmc       740: .It Ic kill-pane Op Fl t Ar target-pane
                    741: .D1 (alias: Ic killp )
                    742: Destroy the given pane.
                    743: If no panes remain in the containing window, it is also destroyed.
                    744: .It Ic kill-window Op Fl t Ar target-window
                    745: .D1 (alias: Ic killw )
                    746: Kill the current window or the window at
                    747: .Ar target-window ,
1.1       nicm      748: removing it from any sessions to which it is linked.
1.56      jmc       749: .It Ic last-window Op Fl t Ar target-session
1.1       nicm      750: .D1 (alias: Ic last )
                    751: Select the last (previously selected) window.
                    752: If no
                    753: .Ar target-session
                    754: is specified, select the last window of the current session.
                    755: .It Xo Ic link-window
                    756: .Op Fl dk
                    757: .Op Fl s Ar src-window
                    758: .Op Fl t Ar dst-window
                    759: .Xc
                    760: .D1 (alias: Ic linkw )
                    761: Link the window at
                    762: .Ar src-window
                    763: to the specified
                    764: .Ar dst-window .
                    765: If
                    766: .Ar dst-window
                    767: is specified and no such window exists, the
                    768: .Ar src-window
                    769: is linked there.
                    770: If
                    771: .Fl k
                    772: is given and
                    773: .Ar dst-window
                    774: exists, it is killed, otherwise an error is generated.
                    775: If
                    776: .Fl d
                    777: is given, the newly linked window is not selected.
1.56      jmc       778: .It Ic list-windows Op Fl t Ar target-session
1.1       nicm      779: .D1 (alias: Ic lsw )
                    780: List windows in the current session or in
                    781: .Ar target-session .
                    782: .It Xo Ic move-window
                    783: .Op Fl d
                    784: .Op Fl s Ar src-window
                    785: .Op Fl t Ar dst-window
                    786: .Xc
                    787: .D1 (alias: Ic movew )
                    788: This is similar to
                    789: .Ic link-window ,
                    790: except the window at
                    791: .Ar src-window
                    792: is moved to
                    793: .Ar dst-window .
                    794: .It Xo Ic new-window
1.28      nicm      795: .Op Fl dk
1.1       nicm      796: .Op Fl n Ar window-name
                    797: .Op Fl t Ar target-window
                    798: .Op Ar command
                    799: .Xc
                    800: .D1 (alias: Ic neww )
                    801: Create a new window.
                    802: If
                    803: .Fl d
                    804: is given, the session does not make the new window the current window.
                    805: .Ar target-window
1.28      nicm      806: represents the window to be created; if the target already exists an error is
                    807: shown, unless the
                    808: .Fl k
                    809: flag is used, in which case it is destroyed.
1.1       nicm      810: .Ar command
                    811: is the command to execute.
                    812: If
                    813: .Ar command
                    814: is not specified, the default command is used.
                    815: .Pp
                    816: The
                    817: .Ev TERM
                    818: environment variable must be set to
                    819: .Dq screen
                    820: for all programs running
                    821: .Em inside
                    822: .Nm .
                    823: New windows will automatically have
                    824: .Dq TERM=screen
                    825: added to their environment, but care must be taken not to reset this in shell
                    826: start-up files.
1.56      jmc       827: .It Ic next-layout Op Fl t Ar target-window
1.1       nicm      828: .D1 (alias: Ic nextl )
                    829: Move a window to the next layout and rearrange the panes to fit.
                    830: .It Xo Ic next-window
1.9       nicm      831: .Op Fl a
1.1       nicm      832: .Op Fl t Ar target-session
                    833: .Xc
                    834: .D1 (alias: Ic next )
                    835: Move to the next window in the session.
1.9       nicm      836: If
1.12      jmc       837: .Fl a
1.9       nicm      838: is used, move to the next window with a bell, activity or content alert.
1.1       nicm      839: .It Xo Ic previous-window
1.9       nicm      840: .Op Fl a
1.1       nicm      841: .Op Fl t Ar target-session
                    842: .Xc
                    843: .D1 (alias: Ic prev )
                    844: Move to the previous window in the session.
1.9       nicm      845: With
                    846: .Fl a ,
                    847: move to the previous window with a bell, activity or content alert.
1.1       nicm      848: .It Xo Ic rename-window
                    849: .Op Fl t Ar target-window
                    850: .Ar new-name
                    851: .Xc
                    852: .D1 (alias: Ic renamew )
                    853: Rename the current window, or the window at
                    854: .Ar target-window
                    855: if specified, to
                    856: .Ar new-name .
                    857: .It Xo Ic resize-pane
1.39      jmc       858: .Op Fl DLRU
1.52      nicm      859: .Op Fl t Ar target-pane
1.1       nicm      860: .Op Ar adjustment
                    861: .Xc
                    862: .D1 (alias: Ic resizep )
1.57      jmc       863: Resize a pane, upward with
                    864: .Fl U
                    865: (the default), downward with
                    866: .Fl D ,
                    867: to the left with
                    868: .Fl L
                    869: and to the right with
                    870: .Fl R .
                    871: The
                    872: .Ar adjustment
                    873: is given in lines or cells (the default is 1).
                    874: .It Xo Ic respawn-window
                    875: .Op Fl k
                    876: .Op Fl t Ar target-window
                    877: .Op Ar command
                    878: .Xc
                    879: .D1 (alias: Ic respawnw )
                    880: Reactive a window in which the command has exited (see the
                    881: .Ic remain-on-exit
                    882: window option).
                    883: If
                    884: .Ar command
                    885: is not given, the command used when the window was created is executed.
                    886: The window must be already inactive, unless
                    887: .Fl k
                    888: is given, in which case any existing command is killed.
                    889: .It Xo Ic rotate-window
                    890: .Op Fl DU
                    891: .Op Fl t Ar target-window
                    892: .Xc
                    893: .D1 (alias: Ic rotatew )
                    894: Rotate the positions of the panes within a window, either upward (numerically
                    895: lower) with
                    896: .Fl U
                    897: or downward (numerically higher).
                    898: .It Xo Ic select-layout
                    899: .Op Fl t Ar target-window
                    900: .Op Ar layout-name
                    901: .Xc
                    902: .D1 (alias: selectl )
                    903: Choose a specific layout for a window.
                    904: If
                    905: .Ar layout-name
                    906: is not given, the last layout used (if any) is reapplied.
                    907: .It Ic select-pane Op Fl t Ar target-pane
                    908: .D1 (alias: Ic selectp )
                    909: Make pane
                    910: .Ar target-pane
                    911: the active pane in window
                    912: .Ar target-window .
                    913: .It Ic select-window Op Fl t Ar target-window
                    914: .D1 (alias: Ic selectw )
                    915: Select the window at
                    916: .Ar target-window .
                    917: .It Xo Ic split-window
                    918: .Op Fl dhv
                    919: .Oo Fl l
                    920: .Ar size |
                    921: .Fl p Ar percentage Oc
                    922: .Op Fl t Ar target-window
                    923: .Op Ar command
                    924: .Xc
                    925: .D1 (alias: splitw )
                    926: Creates a new pane by splitting the active pane:
                    927: .Fl h
                    928: does a horizontal split and
                    929: .Fl v
                    930: a vertical split; if neither is specified,
                    931: .Fl v
                    932: is assumed.
                    933: The
                    934: .Fl l
                    935: and
                    936: .Fl p
                    937: options specify the size of the new window in lines (for vertical split) or in
                    938: cells (for horizontal split), or as a percentage, respectively.
                    939: All other options have the same meaning as in the
                    940: .Ic new-window
                    941: command.
                    942: .It Xo Ic swap-pane
                    943: .Op Fl dDU
                    944: .Op Fl s Ar src-pane
                    945: .Op Fl t Ar dst-pane
                    946: .Xc
                    947: .D1 (alias: Ic swapp )
                    948: Swap two panes.
                    949: If
                    950: .Fl U
                    951: is used and no source pane is specified with
                    952: .Fl s ,
                    953: .Ar dst-pane
                    954: is swapped with the previous pane (before it numerically);
                    955: .Fl D
                    956: swaps with the next pane (after it numerically).
                    957: .It Xo Ic swap-window
                    958: .Op Fl d
                    959: .Op Fl s Ar src-window
                    960: .Op Fl t Ar dst-window
                    961: .Xc
                    962: .D1 (alias: Ic swapw )
                    963: This is similar to
                    964: .Ic link-window ,
                    965: except the source and destination windows are swapped.
                    966: It is an error if no window exists at
                    967: .Ar src-window .
                    968: .It Xo Ic unlink-window
1.1       nicm      969: .Op Fl k
                    970: .Op Fl t Ar target-window
                    971: .Xc
1.57      jmc       972: .D1 (alias: Ic unlinkw )
                    973: Unlink
                    974: .Ar target-window .
                    975: Unless
                    976: .Fl k
                    977: is given, a window may be unlinked only if it is linked to multiple sessions -
                    978: windows may not be linked to no sessions;
                    979: if
1.1       nicm      980: .Fl k
1.57      jmc       981: is specified and the window is linked to only one session, it is unlinked and
                    982: destroyed.
                    983: .It Ic up-pane Op Fl t Ar target-pane
                    984: .D1 (alias: Ic upp )
                    985: Move up a pane.
                    986: .El
                    987: .Sh KEY BINDINGS
1.93      nicm      988: .Nm
                    989: allows a command to be bound to most keys, with or without a prefix key.
                    990: When specifying keys, most represent themselves (for example
                    991: .Ql A
                    992: to
1.95      jmc       993: .Ql Z ) .
1.93      nicm      994: Ctrl keys may be prefixed with
                    995: .Ql C-
                    996: or
1.95      jmc       997: .Ql ^ ,
                    998: and Alt (meta) with
1.93      nicm      999: .Ql M- .
                   1000: In addition, the following special key names are accepted:
                   1001: .Em BSpace ,
                   1002: .Em BTab ,
                   1003: .Em DC
                   1004: (Delete),
                   1005: .Em End ,
                   1006: .Em Enter ,
                   1007: .Em Escape ,
                   1008: .Em F1
                   1009: to
                   1010: .Em F20 ,
                   1011: .Em Home ,
                   1012: .Em IC
                   1013: (Insert),
                   1014: .Em NPage
                   1015: (Page Up),
                   1016: .Em PPage
                   1017: (Page Down),
                   1018: .Em Space ,
                   1019: and
                   1020: .Em Tab .
                   1021: Note that to bind the
                   1022: .Ql \&"
                   1023: or
                   1024: .Ql '
                   1025: keys, quotation marks are necessary, for example:
                   1026: .Bd -literal -offset indent
                   1027: bind-key '"' split-window
                   1028: bind-key "'" select-prompt
                   1029: .Ed
                   1030: .Pp
1.57      jmc      1031: Commands related to key bindings are as follows:
                   1032: .Bl -tag -width Ds
                   1033: .It Xo Ic bind-key
                   1034: .Op Fl cnr
                   1035: .Op Fl t Ar key-table
                   1036: .Ar key Ar command Op Ar arguments
1.1       nicm     1037: .Xc
1.57      jmc      1038: .D1 (alias: Ic bind )
                   1039: Bind key
                   1040: .Ar key
                   1041: to
                   1042: .Ar command .
                   1043: By default (without
                   1044: .Fl t )
                   1045: the primary key bindings are modified (those normally activated with the prefix
                   1046: key); in this case, if
                   1047: .Fl n
                   1048: is specified, it is not necessary to use the prefix key,
                   1049: .Ar command
                   1050: is bound to
                   1051: .Ar key
                   1052: alone.
1.1       nicm     1053: The
1.57      jmc      1054: .Fl r
                   1055: flag indicates this key may repeat, see the
                   1056: .Ic repeat-time
                   1057: option.
                   1058: .Pp
                   1059: If
                   1060: .Fl t
                   1061: is present,
                   1062: .Ar key
                   1063: is bound in
                   1064: .Ar key-table :
                   1065: the binding for command mode with
                   1066: .Fl c
                   1067: or for normal mode without.
                   1068: To view the default bindings and possible commands, see the
                   1069: .Ic list-keys
                   1070: command.
                   1071: .It Ic list-keys Op Fl t Ar key-table
                   1072: .D1 (alias: Ic lsk )
                   1073: List all key bindings.
                   1074: Without
                   1075: .Fl t
                   1076: the primary key bindings - those executed when preceded by the prefix key -
                   1077: are printed.
                   1078: Keys bound without the prefix key (see
                   1079: .Ic bind-key
                   1080: .Fl n )
                   1081: are enclosed in square brackets.
                   1082: .Pp
                   1083: With
                   1084: .Fl t ,
                   1085: the key bindings in
                   1086: .Ar key-table
                   1087: are listed; this may be one of:
                   1088: .Em vi-edit ,
                   1089: .Em emacs-edit ,
                   1090: .Em vi-choice ,
                   1091: .Em emacs-choice ,
                   1092: .Em vi-copy
                   1093: or
                   1094: .Em emacs-copy .
                   1095: .It Xo Ic send-keys
1.72      nicm     1096: .Op Fl t Ar target-pane
1.57      jmc      1097: .Ar key Ar ...
1.1       nicm     1098: .Xc
1.57      jmc      1099: .D1 (alias: Ic send )
                   1100: Send a key or keys to a window.
                   1101: Each argument
                   1102: .Ar key
                   1103: is the name of the key (such as
                   1104: .Ql C-a
                   1105: or
                   1106: .Ql npage
                   1107: ) to send; if the string is not recognised as a key, it is sent as a series of
                   1108: characters.
                   1109: All arguments are sent sequentially from first to last.
1.72      nicm     1110: .It Ic send-prefix Op Fl t Ar target-pane
1.57      jmc      1111: Send the prefix key to a window as if it was pressed.
1.89      nicm     1112: If multiple prefix keys are configured, only the first is sent.
1.57      jmc      1113: .It Xo Ic unbind-key
                   1114: .Op Fl cn
                   1115: .Op Fl t Ar key-table
                   1116: .Ar key
1.2       nicm     1117: .Xc
1.57      jmc      1118: .D1 (alias: Ic unbind )
                   1119: Unbind the command bound to
                   1120: .Ar key .
                   1121: Without
                   1122: .Fl t
                   1123: the primary key bindings are modified; in this case, if
                   1124: .Fl n
                   1125: is specified, the command bound to
                   1126: .Ar key
                   1127: without a prefix (if any) is removed.
                   1128: .Pp
1.47      nicm     1129: If
1.57      jmc      1130: .Fl t
                   1131: is present,
                   1132: .Ar key
                   1133: in
                   1134: .Ar key-table
                   1135: is unbound: the binding for command mode with
                   1136: .Fl c
                   1137: or for normal mode without.
                   1138: .El
                   1139: .Sh OPTIONS
                   1140: The appearance and behaviour of
                   1141: .Nm
                   1142: may be modified by changing the value of various options.
                   1143: There are two types of option:
                   1144: .Em session options
                   1145: and
                   1146: .Em window options .
                   1147: .Pp
                   1148: Each individual session may have a set of session options, and there is a
                   1149: separate set of global session options.
                   1150: Sessions which do not have a particular option configured inherit the value
                   1151: from the global session options.
                   1152: Session options are set or unset with the
                   1153: .Ic set-option
                   1154: command and may be listed with the
                   1155: .Ic show-options
                   1156: command.
                   1157: The available session options are listed under the
                   1158: .Ic set-option
                   1159: command.
                   1160: .Pp
                   1161: Similarly, a set of window options is attached to each window, and there is
                   1162: a set of global window options from which any unset options are inherited.
                   1163: Window options are altered with the
                   1164: .Ic set-window-option
                   1165: command and can be listed with the
                   1166: .Ic show-window-options
                   1167: command.
                   1168: All window options are documented with the
                   1169: .Ic set-window-option
                   1170: command.
                   1171: .Pp
                   1172: Commands which set options are as follows:
                   1173: .Bl -tag -width Ds
1.1       nicm     1174: .It Xo Ic set-option
1.58      nicm     1175: .Op Fl agu
1.1       nicm     1176: .Op Fl t Ar target-session
                   1177: .Ar option Ar value
                   1178: .Xc
                   1179: .D1 (alias: Ic set )
1.18      nicm     1180: Set a session option.
1.58      nicm     1181: With
                   1182: .Fl a ,
                   1183: and if the option expects a string,
                   1184: .Ar value
                   1185: is appended to the existing setting.
1.1       nicm     1186: If
                   1187: .Fl g
1.18      nicm     1188: is specified, the global session option is set.
1.1       nicm     1189: The
                   1190: .Fl u
                   1191: flag unsets an option, so a session inherits the option from the global
                   1192: options - it is not possible to unset a global option.
                   1193: .Pp
1.18      nicm     1194: Available session options are:
1.1       nicm     1195: .Bl -tag -width Ds
1.69      nicm     1196: .It Ic base-index Ar index
                   1197: Set the base index from which an unused index should be searched when a new
                   1198: window is created.
                   1199: The default is zero.
1.1       nicm     1200: .It Xo Ic bell-action
1.56      jmc      1201: .Op Ic any | none | current
1.1       nicm     1202: .Xc
                   1203: Set action on window bell.
                   1204: .Ic any
                   1205: means a bell in any window linked to a session causes a bell in the current
                   1206: window of that session,
                   1207: .Ic none
                   1208: means all bells are ignored and
                   1209: .Ic current
                   1210: means only bell in windows other than the current window are ignored.
                   1211: .It Ic buffer-limit Ar number
                   1212: Set the number of buffers kept for each session; as new buffers are added to
                   1213: the top of the stack, old ones are removed from the bottom if necessary to
                   1214: maintain this maximum length.
                   1215: .It Ic default-command Ar command
                   1216: Set the command used for new windows (if not specified when the window is
                   1217: created) to
1.79      nicm     1218: .Ar command ,
                   1219: which may be any
                   1220: .Xr sh 1
                   1221: command.
1.19      nicm     1222: The default is an empty string, which instructs
                   1223: .Nm
1.79      nicm     1224: to create a login shell using the value of the
                   1225: .Ic default-shell
                   1226: option.
                   1227: .It Ic default-shell Ar path
                   1228: Specify the default shell.
                   1229: This is used as the login shell for new windows when the
                   1230: .Ic default-command
                   1231: option is set to empty, and must be the full path of the executable.
                   1232: When started
                   1233: .Nm
                   1234: tries to set a default value from the first suitable of the
1.19      nicm     1235: .Ev SHELL
1.79      nicm     1236: environment variable, the shell returned by
                   1237: .Xr getpwuid 3 ,
                   1238: or
                   1239: .Pa /bin/sh .
                   1240: This option should be configured when
                   1241: .Nm
                   1242: is used as a login shell.
1.1       nicm     1243: .It Ic default-path Ar path
                   1244: Set the default working directory for processes created from keys, or
                   1245: interactively from the prompt.
                   1246: The default is the current working directory when the server is started.
1.22      nicm     1247: .It Ic default-terminal Ar terminal
                   1248: Set the default terminal for new windows created in this session - the
                   1249: default value of the
                   1250: .Ev TERM
                   1251: environment variable.
                   1252: For
                   1253: .Nm
                   1254: to work correctly, this
                   1255: .Em must
                   1256: be set to
                   1257: .Ql screen
                   1258: or a derivative of it.
1.78      nicm     1259: .It Ic display-panes-colour Ar colour
                   1260: Set the colour used for the
                   1261: .Ic display-panes
                   1262: command.
                   1263: .It Ic display-panes-time Ar time
                   1264: Set the time in milliseconds for which the indicators shown by the
                   1265: .Ic display-panes
                   1266: command appear.
1.21      nicm     1267: .It Ic display-time Ar time
1.78      nicm     1268: Set the amount of time for which status line messages and other on-screen
                   1269: indicators are displayed.
1.21      nicm     1270: .Ar time
                   1271: is in milliseconds.
1.1       nicm     1272: .It Ic history-limit Ar lines
                   1273: Set the maximum number of lines held in window history.
                   1274: This setting applies only to new windows - existing window histories are not
                   1275: resized and retain the limit at the point they were created.
                   1276: .It Ic lock-after-time Ar number
1.100     nicm     1277: Lock the session (like the
                   1278: .Ic lock-session
1.90      nicm     1279: command) after
1.1       nicm     1280: .Ar number
1.100     nicm     1281: seconds of inactivity, or the entire server (all sessions) if the
                   1282: .Ic lock-server
                   1283: option is set.
                   1284: The default is not to lock (set to 0).
1.90      nicm     1285: .It Ic lock-command Ar command
                   1286: Command to run when locking each client.
                   1287: The default is to run
                   1288: .Xr lock 1
                   1289: with
                   1290: .Fl np .
1.100     nicm     1291: .It Xo Ic lock-server
                   1292: .Op Ic on | off
                   1293: .Xc
                   1294: If this option is
1.102   ! nicm     1295: .Ic on
1.100     nicm     1296: (the default),
                   1297: instead of each session locking individually as each has been
                   1298: idle for
                   1299: .Ic lock-after-time
                   1300: , the entire server will lock after
                   1301: .Em all
                   1302: sessions would have locked.
                   1303: This has no effect as a session option; it must be set as a global option.
1.1       nicm     1304: .It Ic message-attr Ar attributes
                   1305: Set status line message attributes, where
                   1306: .Ar attributes
                   1307: is either
                   1308: .Ic default
                   1309: or a comma-delimited list of one or more of:
                   1310: .Ic bright
                   1311: (or
                   1312: .Ic bold ) ,
                   1313: .Ic dim ,
                   1314: .Ic underscore ,
                   1315: .Ic blink ,
                   1316: .Ic reverse ,
                   1317: .Ic hidden ,
                   1318: or
                   1319: .Ic italics .
                   1320: .It Ic message-bg Ar colour
                   1321: Set status line message background colour, where
                   1322: .Ar colour
                   1323: is one of:
                   1324: .Ic black ,
                   1325: .Ic red ,
                   1326: .Ic green ,
                   1327: .Ic yellow ,
                   1328: .Ic blue ,
                   1329: .Ic magenta ,
                   1330: .Ic cyan ,
1.85      nicm     1331: .Ic white ,
                   1332: .Ic colour0
                   1333: to
                   1334: .Ic colour255
                   1335: from the 256-colour palette, or
1.1       nicm     1336: .Ic default .
                   1337: .It Ic message-fg Ar colour
                   1338: Set status line message foreground colour.
1.102   ! nicm     1339: .It Xo Ic mouse-select-pane
        !          1340: .Op Ic on | off
        !          1341: .Xc
        !          1342: If on,
        !          1343: .Nm
        !          1344: captures the mouse and when a window is split into multiple panes the mouse may
        !          1345: be used to select the current pane.
        !          1346: The mouse click is also passed through to the application as normal.
1.89      nicm     1347: .It Ic prefix Ar keys
                   1348: Set the keys accepted as a prefix key.
                   1349: .Ar keys
                   1350: is a comma-separated list of key names, each of which individually behave as
                   1351: the prefix key.
1.21      nicm     1352: .It Ic repeat-time Ar time
1.1       nicm     1353: Allow multiple commands to be entered without pressing the prefix-key again
                   1354: in the specified
1.21      nicm     1355: .Ar time
1.1       nicm     1356: milliseconds (the default is 500).
                   1357: Whether a key repeats may be set when it is bound using the
                   1358: .Fl r
                   1359: flag to
                   1360: .Ic bind-key .
1.52      nicm     1361: Repeat is enabled for the default keys bound to the
                   1362: .Ic resize-pane
                   1363: command.
1.1       nicm     1364: .It Xo Ic set-remain-on-exit
1.56      jmc      1365: .Op Ic on | off
1.1       nicm     1366: .Xc
                   1367: Set the
                   1368: .Ic remain-on-exit
                   1369: window option for any windows first created in this session.
                   1370: .It Xo Ic set-titles
1.56      jmc      1371: .Op Ic on | off
1.1       nicm     1372: .Xc
1.77      stsp     1373: Attempt to set the window title using the \ee]2;...\e007 xterm code if
1.1       nicm     1374: the terminal appears to be an xterm.
1.11      nicm     1375: This option is off by default.
1.6       jmc      1376: Note that elinks
1.1       nicm     1377: will only attempt to set the window title if the STY environment
                   1378: variable is set.
1.86      nicm     1379: .It Ic set-titles-string Ar string
                   1380: String used to set the window title if
                   1381: .Ic set-titles
                   1382: is on.
                   1383: Character sequences are replaced as for the
                   1384: .Ic status-left
                   1385: option.
1.1       nicm     1386: .It Xo Ic status
1.56      jmc      1387: .Op Ic on | off
1.1       nicm     1388: .Xc
                   1389: Show or hide the status line.
                   1390: .It Ic status-attr Ar attributes
                   1391: Set status line attributes.
                   1392: .It Ic status-bg Ar colour
                   1393: Set status line background colour.
                   1394: .It Ic status-fg Ar colour
                   1395: Set status line foreground colour.
                   1396: .It Ic status-interval Ar interval
                   1397: Update the status bar every
                   1398: .Ar interval
                   1399: seconds.
                   1400: By default, updates will occur every 15 seconds.
                   1401: A setting of zero disables redrawing at interval.
1.41      nicm     1402: .It Xo Ic status-justify
1.56      jmc      1403: .Op Ic left | centre | right
1.41      nicm     1404: .Xc
                   1405: Set the position of the window list component of the status line: left, centre
                   1406: or right justified.
1.1       nicm     1407: .It Xo Ic status-keys
1.56      jmc      1408: .Op Ic vi | emacs
1.1       nicm     1409: .Xc
1.6       jmc      1410: Use vi or emacs-style
1.1       nicm     1411: key bindings in the status line, for example at the command prompt.
                   1412: Defaults to emacs.
                   1413: .It Ic status-left Ar string
                   1414: Display
                   1415: .Ar string
                   1416: to the left of the status bar.
                   1417: .Ar string
                   1418: will be passed through
                   1419: .Xr strftime 3
                   1420: before being used.
                   1421: By default, the session name is shown.
                   1422: .Ar string
1.83      nicm     1423: may contain any of the following special character sequences:
1.1       nicm     1424: .Bl -column "Character pair" "Replaced with" -offset indent
                   1425: .It Sy "Character pair" Ta Sy "Replaced with"
                   1426: .It Li "#(command)" Ta "First line of command's output"
1.83      nicm     1427: .It Li "#[attributes]" Ta "Colour or attribute change"
1.1       nicm     1428: .It Li "#H" Ta "Hostname of local host"
1.35      nicm     1429: .It Li "#I" Ta "Current window index"
                   1430: .It Li "#P" Ta "Current pane index"
1.1       nicm     1431: .It Li "#S" Ta "Session name"
                   1432: .It Li "#T" Ta "Current window title"
1.35      nicm     1433: .It Li "#W" Ta "Current window name"
1.1       nicm     1434: .It Li "##" Ta "A literal" Ql #
                   1435: .El
1.83      nicm     1436: .Pp
                   1437: The #(command) form executes
                   1438: .Ql command
                   1439: as a shell command and inserts the first line of its output.
                   1440: #[attributes] allows a comma-separated list of attributes to be specified,
                   1441: these may be
                   1442: .Ql fg=colour
                   1443: to set the foreground colour,
                   1444: .Ql bg=colour
                   1445: to set the background colour, or one of the attributes described under the
                   1446: .Ic message-attr
                   1447: option.
                   1448: Examples are:
                   1449: .Bd -literal -offset indent
                   1450: #(sysctl vm.loadavg)
                   1451: #[fg=yellow,bold]#(apm -l)%%#[default] [#S]
                   1452: .Ed
1.1       nicm     1453: .Pp
                   1454: Where appropriate, these may be prefixed with a number to specify the maximum
                   1455: length, for example
                   1456: .Ql #24T .
1.10      nicm     1457: .Pp
1.12      jmc      1458: By default, UTF-8 in
1.10      nicm     1459: .Ar string
                   1460: is not interpreted, to enable UTF-8, use the
                   1461: .Ic status-utf8
                   1462: option.
1.62      nicm     1463: .It Ic status-left-attr Ar attributes
1.66      jmc      1464: Set the attribute of the left part of the status line.
1.62      nicm     1465: .It Ic status-left-fg Ar colour
                   1466: Set the foreground colour of the left part of the status line.
                   1467: .It Ic status-left-bg Ar colour
                   1468: Set the background colour of the left part of the status line.
1.1       nicm     1469: .It Ic status-left-length Ar length
                   1470: Set the maximum
                   1471: .Ar length
                   1472: of the left component of the status bar.
                   1473: The default is 10.
                   1474: .It Ic status-right Ar string
                   1475: Display
                   1476: .Ar string
                   1477: to the right of the status bar.
                   1478: By default, the date and time will be shown.
                   1479: As with
                   1480: .Ic status-left ,
                   1481: .Ar string
                   1482: will be passed to
1.10      nicm     1483: .Xr strftime 3 ,
                   1484: character pairs are replaced, and UTF-8 is dependent on the
                   1485: .Ic status-utf8
                   1486: option.
1.62      nicm     1487: .It Ic status-right-attr Ar attributes
1.66      jmc      1488: Set the attribute of the right part of the status line.
1.62      nicm     1489: .It Ic status-right-fg Ar colour
                   1490: Set the foreground colour of the right part of the status line.
                   1491: .It Ic status-right-bg Ar colour
                   1492: Set the background colour of the right part of the status line.
1.1       nicm     1493: .It Ic status-right-length Ar length
                   1494: Set the maximum
                   1495: .Ar length
                   1496: of the right component of the status bar.
                   1497: The default is 40.
1.10      nicm     1498: .Pp
                   1499: .It Xo Ic status-utf8
1.56      jmc      1500: .Op Ic on | off
1.10      nicm     1501: .Xc
                   1502: Instruct
                   1503: .Nm
                   1504: to treat top-bit-set characters in the
                   1505: .Ic status-left
                   1506: and
                   1507: .Ic status-right
                   1508: strings as UTF-8; notably, this is important for wide characters.
                   1509: This option defaults to off.
1.55      jmc      1510: .It Ic terminal-overrides Ar string
1.54      nicm     1511: Contains a list of entries which override terminal descriptions read using
                   1512: .Xr terminfo 5 .
                   1513: .Ar string
                   1514: is a comma-separated list of items each a colon-separated string made up of a
                   1515: terminal type pattern (matched using
                   1516: .Xr fnmatch 3 )
                   1517: and a set of
                   1518: .Em name=value
                   1519: entries.
                   1520: .Pp
                   1521: For example, to set the
                   1522: .Ql clear
                   1523: .Xr terminfo 5
                   1524: entry to
                   1525: .Ql \ee[H\ee[2J
                   1526: for all terminal types and the
                   1527: .Ql dch1
                   1528: entry to
                   1529: .Ql \ee[P
1.55      jmc      1530: for the
1.54      nicm     1531: .Ql rxvt
                   1532: terminal type, the option could be set to the string:
                   1533: .Bd -literal -offset indent
                   1534: "*:clear=\ee[H\ee[2J,rxvt:dch1=\ee[P"
                   1535: .Ed
                   1536: .Pp
                   1537: The terminal entry value is passed through
                   1538: .Xr strunvis 3
                   1539: before interpretation.
                   1540: The default value forcibly corrects the
                   1541: .Ql colors
                   1542: entry for terminals which support 88 or 256 colours:
                   1543: .Bd -literal -offset indent
                   1544: "*88col*:colors=88,*256col*:colors=256"
                   1545: .Ed
1.63      nicm     1546: .It Ic update-environment Ar variables
                   1547: Set a space-separated string containing a list of environment variables to be
                   1548: copied into the session environment when a new session is created or an
                   1549: existing session is attached.
                   1550: Any variables that do not exist in the source environment are set to be
                   1551: removed from the session environment (as if
                   1552: .Fl r
                   1553: was given to the
                   1554: .Ic set-environment
                   1555: command).
                   1556: The default is
1.75      nicm     1557: "DISPLAY WINDOWID SSH_ASKPASS SSH_AUTH_SOCK SSH_AGENT_PID SSH_CONNECTION".
1.37      nicm     1558: .It Xo Ic visual-activity
1.56      jmc      1559: .Op Ic on | off
1.37      nicm     1560: .Xc
                   1561: If on, display a status line message when activity occurs in a window
1.39      jmc      1562: for which the
1.37      nicm     1563: .Ic monitor-activity
                   1564: window option is enabled.
                   1565: .It Xo Ic visual-bell
1.56      jmc      1566: .Op Ic on | off
1.37      nicm     1567: .Xc
                   1568: If this option is on, a message is shown on a bell instead of it being passed
                   1569: through to the terminal (which normally makes a sound).
                   1570: Also see the
                   1571: .Ic bell-action
                   1572: option.
                   1573: .It Xo Ic visual-content
1.56      jmc      1574: .Op Ic on | off
1.37      nicm     1575: .Xc
                   1576: Like
                   1577: .Ic visual-activity ,
                   1578: display a message when content is present in a window
1.39      jmc      1579: for which the
1.37      nicm     1580: .Ic monitor-content
                   1581: window option is enabled.
1.1       nicm     1582: .El
                   1583: .It Xo Ic set-window-option
1.58      nicm     1584: .Op Fl agu
1.1       nicm     1585: .Op Fl t Ar target-window
                   1586: .Ar option Ar value
                   1587: .Xc
                   1588: .D1 (alias: Ic setw )
1.18      nicm     1589: Set a window option.
1.1       nicm     1590: The
1.58      nicm     1591: .Fl a ,
1.1       nicm     1592: .Fl g
                   1593: and
                   1594: .Fl u
                   1595: flags work similarly to the
                   1596: .Ic set-option
                   1597: command.
                   1598: .Pp
1.18      nicm     1599: Supported window options are:
1.56      jmc      1600: .Pp
                   1601: .Bl -tag -width Ds -compact
1.1       nicm     1602: .It Xo Ic aggressive-resize
1.56      jmc      1603: .Op Ic on | off
1.1       nicm     1604: .Xc
                   1605: Aggressively resize the chosen window.
                   1606: This means that
                   1607: .Nm
                   1608: will resize the window to the size of the smallest session for which it is the
                   1609: current window, rather than the smallest session to which it is attached.
                   1610: The window may resize when the current window is changed on another sessions;
1.6       jmc      1611: this option is good for full-screen programs which support
                   1612: .Dv SIGWINCH
                   1613: and poor for interactive programs such as shells.
1.56      jmc      1614: .Pp
1.1       nicm     1615: .It Xo Ic automatic-rename
1.56      jmc      1616: .Op Ic on | off
1.1       nicm     1617: .Xc
                   1618: Control automatic window renaming.
                   1619: When this setting is enabled,
                   1620: .Nm
                   1621: will attempt - on supported platforms - to rename the window to reflect the
                   1622: command currently running in it.
                   1623: This flag is automatically disabled for an individual window when a name
                   1624: is specified at creation with
                   1625: .Ic new-window or
                   1626: .Ic new-session ,
                   1627: or later with
                   1628: .Ic rename-window .
                   1629: It may be switched off globally with:
                   1630: .Bd -literal -offset indent
                   1631: set-window-option -g automatic-rename off
                   1632: .Ed
1.56      jmc      1633: .Pp
1.1       nicm     1634: .It Ic clock-mode-colour Ar colour
                   1635: Set clock colour.
1.56      jmc      1636: .Pp
1.1       nicm     1637: .It Xo Ic clock-mode-style
1.56      jmc      1638: .Op Ic 12 | 24
1.1       nicm     1639: .Xc
                   1640: Set clock hour format.
1.56      jmc      1641: .Pp
1.1       nicm     1642: .It Ic force-height Ar height
                   1643: .It Ic force-width Ar width
                   1644: Prevent
                   1645: .Nm
                   1646: from resizing a window to greater than
                   1647: .Ar width
                   1648: or
                   1649: .Ar height .
                   1650: A value of zero restores the default unlimited setting.
1.56      jmc      1651: .Pp
1.2       nicm     1652: .It Ic main-pane-width Ar width
                   1653: .It Ic main-pane-height Ar height
                   1654: Set the width or height of the main (left or top) pane in the
                   1655: .Ic main-horizontal
                   1656: or
                   1657: .Ic main-vertical
                   1658: layouts.
1.56      jmc      1659: .Pp
1.1       nicm     1660: .It Ic mode-attr Ar attributes
                   1661: Set window modes attributes.
1.56      jmc      1662: .Pp
1.1       nicm     1663: .It Ic mode-bg Ar colour
                   1664: Set window modes background colour.
1.56      jmc      1665: .Pp
1.1       nicm     1666: .It Ic mode-fg Ar colour
                   1667: Set window modes foreground colour.
1.56      jmc      1668: .Pp
1.1       nicm     1669: .It Xo Ic mode-keys
1.56      jmc      1670: .Op Ic vi | emacs
1.1       nicm     1671: .Xc
1.50      nicm     1672: Use vi or emacs-style key bindings in scroll, copy and choice modes.
1.1       nicm     1673: Key bindings default to emacs.
1.56      jmc      1674: .Pp
1.50      nicm     1675: .It Xo Ic mode-mouse
1.56      jmc      1676: .Op Ic on | off
1.50      nicm     1677: .Xc
1.51      jmc      1678: Mouse state in modes.
                   1679: If on,
1.50      nicm     1680: .Nm
                   1681: will respond to mouse clicks by moving the cursor in copy mode or selecting an
                   1682: option in choice mode.
1.56      jmc      1683: .Pp
1.1       nicm     1684: .It Xo Ic monitor-activity
1.56      jmc      1685: .Op Ic on | off
1.1       nicm     1686: .Xc
                   1687: Monitor for activity in the window.
                   1688: Windows with activity are highlighted in the status line.
1.56      jmc      1689: .Pp
                   1690: .It Ic monitor-content Ar match-string
1.6       jmc      1691: Monitor content in the window.
                   1692: When
1.16      nicm     1693: .Xr fnmatch 3
                   1694: pattern
1.1       nicm     1695: .Ar match-string
                   1696: appears in the window, it is highlighted in the status line.
1.56      jmc      1697: .Pp
1.1       nicm     1698: .It Xo Ic remain-on-exit
1.56      jmc      1699: .Op Ic on | off
1.1       nicm     1700: .Xc
                   1701: A window with this flag set is not destroyed when the program running in it
                   1702: exits.
                   1703: The window may be reactivated with the
                   1704: .Ic respawn-window
                   1705: command.
1.56      jmc      1706: .Pp
1.99      nicm     1707: .It Xo Ic synchronize-panes
                   1708: .Op Ic on | off
                   1709: .Xc
                   1710: Duplicate input to any pane to all other panes in the same window, except
                   1711: for panes that are not in output mode.
1.1       nicm     1712: .It Xo Ic utf8
1.56      jmc      1713: .Op Ic on | off
1.1       nicm     1714: .Xc
                   1715: Instructs
                   1716: .Nm
                   1717: to expect UTF-8 sequences to appear in this window.
1.56      jmc      1718: .Pp
1.1       nicm     1719: .It Ic window-status-attr Ar attributes
                   1720: Set status line attributes for a single window.
1.56      jmc      1721: .Pp
1.1       nicm     1722: .It Ic window-status-bg Ar colour
                   1723: Set status line background colour for a single window.
1.56      jmc      1724: .Pp
1.1       nicm     1725: .It Ic window-status-fg Ar colour
                   1726: Set status line foreground colour for a single window.
1.56      jmc      1727: .Pp
1.40      nicm     1728: .It Ic window-status-current-attr Ar attributes
                   1729: Set status line attributes for the currently active window.
1.56      jmc      1730: .Pp
1.40      nicm     1731: .It Ic window-status-current-bg Ar colour
                   1732: Set status line background colour for the currently active window.
1.56      jmc      1733: .Pp
1.40      nicm     1734: .It Ic window-status-current-fg Ar colour
                   1735: Set status line foreground colour for the currently active window.
1.56      jmc      1736: .Pp
1.1       nicm     1737: .It Xo Ic xterm-keys
1.56      jmc      1738: .Op Ic on | off
1.1       nicm     1739: .Xc
                   1740: If this option is set,
                   1741: .Nm
                   1742: will generate
1.57      jmc      1743: .Xr xterm 1 -style
                   1744: function key sequences; these have a number included to indicate modifiers such
                   1745: as Shift, Alt or Ctrl.
                   1746: .El
                   1747: .It Xo Ic show-options
                   1748: .Op Fl g
                   1749: .Op Fl t Ar target-session
                   1750: .Xc
                   1751: .D1 (alias: Ic show )
                   1752: Show the session options for
                   1753: .Ar target session ,
                   1754: or the global session options with
                   1755: .Fl g .
                   1756: .It Xo Ic show-window-options
                   1757: .Op Fl g
                   1758: .Op Fl t Ar target-window
                   1759: .Xc
                   1760: .D1 (alias: Ic showw )
                   1761: List the window options for
                   1762: .Ar target-window ,
                   1763: or the global window options if
                   1764: .Fl g
                   1765: is used.
1.63      nicm     1766: .El
                   1767: .Sh ENVIRONMENT
                   1768: When the server is started,
                   1769: .Nm
                   1770: copies the environment into the
                   1771: .Em global environment ;
                   1772: in addition, each session has a
                   1773: .Em session environment .
                   1774: When a window is created, the session and global environments are merged with
                   1775: the session environment overriding any variable present in both.
                   1776: This is the initial environment passed to the new process.
                   1777: .Pp
                   1778: The
                   1779: .Ic update-environment
                   1780: session option may be used to update the session environment from the client
                   1781: when a new session is created or an old reattached.
                   1782: .Nm
                   1783: also initialises the
                   1784: .Ev TMUX
                   1785: variable with some internal information to allow commands to be executed
                   1786: from inside, and the
                   1787: .Ev TERM
                   1788: variable with the correct terminal setting of
                   1789: .Ql screen .
                   1790: .Pp
                   1791: Commands to alter and view the environment are:
                   1792: .Bl -tag -width Ds
                   1793: .It Xo Ic set-environment
                   1794: .Op Fl gru
                   1795: .Op Fl t Ar target-session
                   1796: .Ar name Op Ar value
                   1797: .Xc
                   1798: Set or unset an environment variable.
                   1799: If
                   1800: .Fl g
                   1801: is used, the change is made in the global environment; otherwise, it is applied
                   1802: to the session environment for
                   1803: .Ar target-session .
                   1804: The
                   1805: .Fl u
                   1806: flag unsets a variable.
                   1807: .Fl r
                   1808: indicates the variable is to be removed from the environment before starting a
                   1809: new process.
                   1810: .It Xo Ic show-environment
                   1811: .Op Fl g
                   1812: .Op Fl t Ar target-session
                   1813: .Xc
                   1814: Display the environment for
                   1815: .Ar target-session
                   1816: or the global environment with
                   1817: .Fl g .
                   1818: Variables removed from the environment are prefixed with
                   1819: .Ql - .
1.57      jmc      1820: .El
                   1821: .Sh STATUS LINE
                   1822: .Nm
                   1823: includes an optional status line which is displayed in the bottom line of each
                   1824: terminal.
                   1825: By default, the status line is enabled (it may be disabled with the
                   1826: .Ic status
                   1827: session option) and contains, from left-to-right: the name of the current
                   1828: session in square brackets; the window list; the current window title in double
                   1829: quotes; and the time and date.
                   1830: .Pp
                   1831: The status line is made of three parts: configurable left and right sections
                   1832: (which may contain dynamic content such as the time or output from a shell
                   1833: command, see the
                   1834: .Ic status-left ,
                   1835: .Ic status-left-length ,
                   1836: .Ic status-right ,
                   1837: and
                   1838: .Ic status-right-length
                   1839: options below), and a central window list.
                   1840: The window list shows the index, name and (if any) flag of the windows
                   1841: present in the current session in ascending numerical order.
                   1842: The flag is one of the following symbols appended to the window name:
                   1843: .Bl -column "Symbol" "Meaning" -offset indent
                   1844: .It Sy "Symbol" Ta Sy "Meaning"
                   1845: .It Li "*" Ta "Denotes the current window."
                   1846: .It Li "-" Ta "Marks the last window (previously selected)."
                   1847: .It Li "#" Ta "Window is monitored and activity has been detected."
                   1848: .It Li "!" Ta "A bell has occurred in the window."
                   1849: .It Li "+" Ta "Window is monitored for content and it has appeared."
                   1850: .El
                   1851: .Pp
                   1852: The # symbol relates to the
                   1853: .Ic monitor-activity
                   1854: and + to the
                   1855: .Ic monitor-content
                   1856: window options.
                   1857: The window name is printed in inverted colours if an alert (bell, activity or
                   1858: content) is present.
                   1859: .Pp
                   1860: The colour and attributes of the status line may be configured, the entire status line using
                   1861: the
                   1862: .Ic status-attr ,
                   1863: .Ic status-fg
                   1864: and
                   1865: .Ic status-bg
                   1866: session options and individual windows using the
                   1867: .Ic window-status-attr ,
                   1868: .Ic window-status-fg
                   1869: and
                   1870: .Ic window-status-bg
                   1871: window options.
                   1872: .Pp
                   1873: The status line is automatically refreshed at interval if it has changed, the interval may be
                   1874: controlled with the
                   1875: .Ic status-interval
                   1876: session option.
                   1877: .Pp
                   1878: Commands related to the status line are as follows:
                   1879: .Bl -tag -width Ds
                   1880: .It Xo Ic command-prompt
1.73      nicm     1881: .Op Fl p Ar prompts
1.57      jmc      1882: .Op Fl t Ar target-client
                   1883: .Op Ar template
                   1884: .Xc
                   1885: Open the command prompt in a client.
                   1886: This may be used from inside
                   1887: .Nm
                   1888: to execute commands interactively.
                   1889: If
                   1890: .Ar template
1.73      nicm     1891: is specified, it is used as the command.
                   1892: If
                   1893: .Fl p
                   1894: is given,
                   1895: .Ar prompts
                   1896: is a comma-separated list of prompts which are displayed in order; otherwise
                   1897: a single prompt is displayed, constructed from
                   1898: .Ar template
                   1899: if it is present, or
                   1900: .Ql \&:
                   1901: if not.
                   1902: Before the command is executed, the first occurrence of the string
                   1903: .Ql %%
1.74      jmc      1904: and all occurrences of
1.73      nicm     1905: .Ql %1
                   1906: are replaced by the response to the first prompt, the second
                   1907: .Ql %%
                   1908: and all
                   1909: .Ql %2
                   1910: are replaced with the response to the second prompt, and so on for further
1.74      jmc      1911: prompts.
                   1912: Up to nine prompt responses may be replaced
                   1913: .Po
                   1914: .Ql %1
1.73      nicm     1915: to
1.74      jmc      1916: .Ql %9
                   1917: .Pc .
1.57      jmc      1918: .It Xo Ic confirm-before
                   1919: .Op Fl t Ar target-client
                   1920: .Ar command
                   1921: .Xc
                   1922: .D1 (alias: Ic confirm )
                   1923: Ask for confirmation before executing
                   1924: .Ar command .
                   1925: This command works only from inside
                   1926: .Nm .
                   1927: .It Xo Ic display-message
                   1928: .Op Fl t Ar target-client
                   1929: .Op Ar message
                   1930: .Xc
                   1931: .D1 (alias: Ic display )
                   1932: Display a message (see the
                   1933: .Ic status-left
                   1934: option below)
                   1935: in the status line.
                   1936: .It Ic select-prompt Op Fl t Ar target-client
                   1937: Open a prompt inside
                   1938: .Ar target-client
                   1939: allowing a window index to be entered interactively.
                   1940: .El
                   1941: .Sh BUFFERS
                   1942: .Nm
                   1943: maintains a stack of
                   1944: .Em paste buffers
                   1945: for each session.
                   1946: Up to the value of the
                   1947: .Ic buffer-limit
                   1948: option are kept; when a new buffer is added, the buffer at the bottom of the
                   1949: stack is removed.
                   1950: Buffers may be added using
                   1951: .Ic copy-mode
                   1952: or the
                   1953: .Ic set-buffer
                   1954: command, and pasted into a window using the
                   1955: .Ic paste-buffer
                   1956: command.
                   1957: .Pp
                   1958: A configurable history buffer is also maintained for each window.
                   1959: By default, up to 2000 lines are kept; this can be altered with the
                   1960: .Ic history-limit
                   1961: option (see the
                   1962: .Ic set-option
                   1963: command above).
                   1964: .Pp
                   1965: The buffer commands are as follows:
                   1966: .Bl -tag -width Ds
                   1967: .It Ic clear-history Op Fl t Ar target-pane
                   1968: .D1 (alias: Ic clearhist )
                   1969: Remove and free the history for the specified pane.
                   1970: .It Xo Ic copy-buffer
                   1971: .Op Fl a Ar src-index
                   1972: .Op Fl b Ar dst-index
                   1973: .Op Fl s Ar src-session
                   1974: .Op Fl t Ar dst-session
                   1975: .Xc
                   1976: .D1 (alias: Ic copyb )
                   1977: Copy a session paste buffer to another session.
                   1978: If no sessions are specified, the current one is used instead.
                   1979: .It Xo Ic delete-buffer
                   1980: .Op Fl b Ar buffer-index
                   1981: .Op Fl t Ar target-session
                   1982: .Xc
                   1983: .D1 (alias: Ic deleteb )
                   1984: Delete the buffer at
                   1985: .Ar buffer-index ,
                   1986: or the top buffer if not specified.
                   1987: .It Ic list-buffers Op Fl t Ar target-session
                   1988: .D1 (alias: Ic lsb )
                   1989: List the buffers in the given session.
                   1990: .It Xo Ic load-buffer
                   1991: .Op Fl b Ar buffer-index
                   1992: .Op Fl t Ar target-session
                   1993: .Ar path
                   1994: .Xc
                   1995: .D1 (alias: Ic loadb )
                   1996: Load the contents of the specified paste buffer from
                   1997: .Ar path .
                   1998: .It Xo Ic paste-buffer
                   1999: .Op Fl dr
                   2000: .Op Fl b Ar buffer-index
                   2001: .Op Fl t Ar target-window
                   2002: .Xc
                   2003: .D1 (alias: Ic pasteb )
                   2004: Insert the contents of a paste buffer into the current window.
                   2005: With
                   2006: .Fl d ,
                   2007: also delete the paste buffer from the stack.
                   2008: When output, any linefeed (LF) characters in the paste buffer are replaced with
                   2009: carriage returns (CR).
                   2010: This translation may be disabled with the
                   2011: .Fl r
                   2012: flag.
                   2013: .It Xo Ic save-buffer
                   2014: .Op Fl a
                   2015: .Op Fl b Ar buffer-index
                   2016: .Op Fl t Ar target-session
                   2017: .Ar path
                   2018: .Xc
                   2019: .D1 (alias: Ic saveb )
                   2020: Save the contents of the specified paste buffer to
                   2021: .Ar path .
                   2022: The
                   2023: .Fl a
                   2024: option appends to rather than overwriting the file.
                   2025: .It Xo Ic set-buffer
                   2026: .Op Fl b Ar buffer-index
                   2027: .Op Fl t Ar target-session
                   2028: .Ar data
                   2029: .Xc
                   2030: .D1 (alias: Ic setb )
                   2031: Set the contents of the specified buffer to
                   2032: .Ar data .
1.1       nicm     2033: .It Xo Ic show-buffer
                   2034: .Op Fl b Ar buffer-index
                   2035: .Op Fl t Ar target-session
                   2036: .Xc
                   2037: .D1 (alias: Ic showb )
                   2038: Display the contents of the specified buffer.
1.57      jmc      2039: .El
                   2040: .Sh MISCELLANEOUS
                   2041: .Pp
                   2042: Miscellaneous commands are as follows:
                   2043: .Bl -tag -width Ds
1.72      nicm     2044: .It Ic clock-mode Op Fl t Ar target-pane
1.57      jmc      2045: Display a large clock.
                   2046: .It Ic if-shell Ar shell-command command
                   2047: .D1 (alias: Ic if )
                   2048: Execute
                   2049: .Ar command
                   2050: if
                   2051: .Ar shell-command
                   2052: returns success.
                   2053: .It Ic lock-server
                   2054: .D1 (alias: Ic lock )
1.90      nicm     2055: Lock each client individually by running the command specified by the
                   2056: .Ic lock-command
                   2057: option.
1.87      nicm     2058: .It Ic run-shell Ar command
                   2059: .D1 (alias: Ic run )
                   2060: Execute
                   2061: .Ar command
                   2062: without creating a window.
                   2063: Any output to stdout is displayed in output mode.
                   2064: If
1.88      jmc      2065: .Ar command
1.87      nicm     2066: doesn't return success, the exit status is also displayed.
1.57      jmc      2067: .It Ic server-info
                   2068: .D1 (alias: Ic info )
                   2069: Show server information and terminal details.
1.1       nicm     2070: .El
                   2071: .Sh FILES
1.26      nicm     2072: .Bl -tag -width "/etc/tmux.confXXX" -compact
1.1       nicm     2073: .It Pa ~/.tmux.conf
1.6       jmc      2074: Default
1.1       nicm     2075: .Nm
1.6       jmc      2076: configuration file.
1.26      nicm     2077: .It Pa /etc/tmux.conf
                   2078: System-wide configuration file.
1.1       nicm     2079: .El
1.57      jmc      2080: .Sh EXAMPLES
                   2081: To create a new
                   2082: .Nm
                   2083: session running
                   2084: .Xr vi 1 :
                   2085: .Pp
                   2086: .Dl $ tmux new-session vi
                   2087: .Pp
                   2088: Most commands have a shorter form, known as an alias.
                   2089: For new-session, this is
                   2090: .Ic new :
                   2091: .Pp
                   2092: .Dl $ tmux new vi
                   2093: .Pp
                   2094: Alternatively, the shortest unambiguous form of a command is accepted.
                   2095: If there are several options, they are listed:
                   2096: .Bd -literal -offset indent
                   2097: $ tmux n
                   2098: ambiguous command: n, could be: new-session, new-window, next-window
                   2099: .Ed
                   2100: .Pp
                   2101: Within an active session, a new window may be created by typing
                   2102: .Ql C-b c
                   2103: (Ctrl
                   2104: followed by the
                   2105: .Ql b
                   2106: key
                   2107: followed by the
                   2108: .Ql c
                   2109: key).
                   2110: .Pp
                   2111: Windows may be navigated with:
                   2112: .Ql C-b 0
                   2113: (to select window 0),
                   2114: .Ql C-b 1
                   2115: (to select window 1), and so on;
                   2116: .Ql C-b n
                   2117: to select the next window; and
                   2118: .Ql C-b p
                   2119: to select the previous window.
                   2120: .Pp
                   2121: A session may be detached using
                   2122: .Ql C-b d
1.64      nicm     2123: (or by an external event such as
                   2124: .Xr ssh 1
                   2125: disconnection) and reattached with:
1.57      jmc      2126: .Pp
                   2127: .Dl $ tmux attach-session
                   2128: .Pp
                   2129: Typing
                   2130: .Ql C-b \&?
                   2131: lists the current key bindings in the current window; up and down may be used
                   2132: to navigate the list or
                   2133: .Ql q
                   2134: to exit from it.
                   2135: .Pp
                   2136: Commands to be run when the
                   2137: .Nm
                   2138: server is started may be placed in the
                   2139: .Pa ~/.tmux.conf
                   2140: configuration file.
                   2141: Common examples include:
                   2142: .Pp
                   2143: Changing the default prefix key:
                   2144: .Bd -literal -offset indent
                   2145: set-option -g prefix C-a
                   2146: unbind-key C-b
                   2147: bind-key C-a send-prefix
                   2148: .Ed
                   2149: .Pp
                   2150: Turning the status line off, or changing its colour:
                   2151: .Bd -literal -offset indent
                   2152: set-option -g status off
                   2153: set-option -g status-bg blue
                   2154: .Ed
                   2155: .Pp
                   2156: Setting other options, such as the default command,
                   2157: or locking after 30 minutes of inactivity:
                   2158: .Bd -literal -offset indent
                   2159: set-option -g default-command "exec /bin/ksh"
                   2160: set-option -g lock-after-time 1800
                   2161: .Ed
                   2162: .Pp
                   2163: Creating new key bindings:
                   2164: .Bd -literal -offset indent
                   2165: bind-key b set-option status
                   2166: bind-key / command-prompt "split-window 'exec man %%'"
1.73      nicm     2167: bind-key S command-prompt "new-window -n %1 'ssh %1'"
1.57      jmc      2168: .Ed
1.1       nicm     2169: .Sh SEE ALSO
                   2170: .Xr pty 4
                   2171: .Sh AUTHORS
                   2172: .An Nicholas Marriott Aq nicm@users.sourceforge.net