[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.266

1.266   ! nicm        1: .\" $OpenBSD: tmux.1,v 1.265 2012/01/21 08:10:21 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.266   ! nicm       17: .Dd $Mdocdate: January 21 2012 $
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.114     nicm       26: .Op Fl 28lquv
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.153     nicm      114: This option is for compatibility with
                    115: .Xr sh 1
                    116: when
                    117: .Nm
                    118: is used as a login shell.
1.1       nicm      119: .It Fl f Ar file
                    120: Specify an alternative configuration file.
                    121: By default,
                    122: .Nm
1.26      nicm      123: loads the system configuration file from
                    124: .Pa /etc/tmux.conf ,
                    125: if present, then looks for a user configuration file at
1.1       nicm      126: .Pa ~/.tmux.conf .
                    127: The configuration file is a set of
                    128: .Nm
                    129: commands which are executed in sequence when the server is first started.
1.61      nicm      130: .Pp
                    131: If a command in the configuration file fails,
                    132: .Nm
                    133: will report an error and exit without executing further commands.
1.1       nicm      134: .It Fl L Ar socket-name
                    135: .Nm
                    136: stores the server socket in a directory under
1.208     nicm      137: .Pa /tmp
                    138: (or
                    139: .Ev TMPDIR
                    140: if set);
1.1       nicm      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.166     sobrado   157: .It Fl l
                    158: Behave as a login shell.
                    159: This flag currently has no effect and is for compatibility with other shells
                    160: when using tmux as a login shell.
1.4       sobrado   161: .It Fl q
1.133     nicm      162: Set the
                    163: .Ic quiet
                    164: server option to prevent the server sending various informational messages.
1.1       nicm      165: .It Fl S Ar socket-path
                    166: Specify a full alternative path to the server socket.
                    167: If
                    168: .Fl S
                    169: is specified, the default socket directory is not used and any
                    170: .Fl L
                    171: flag is ignored.
                    172: .It Fl u
                    173: .Nm
1.14      nicm      174: attempts to guess if the terminal is likely to support UTF-8 by checking the
                    175: first of the
                    176: .Ev LC_ALL ,
                    177: .Ev LC_CTYPE
                    178: and
1.2       nicm      179: .Ev LANG
1.14      nicm      180: environment variables to be set for the string "UTF-8".
1.5       nicm      181: This is not always correct: the
1.2       nicm      182: .Fl u
                    183: flag explicitly informs
                    184: .Nm
1.6       jmc       185: that UTF-8 is supported.
1.33      nicm      186: .Pp
                    187: If the server is started from a client passed
                    188: .Fl u
                    189: or where UTF-8 is detected, the
                    190: .Ic utf8
                    191: and
                    192: .Ic status-utf8
                    193: options are enabled in the global window and session options respectively.
1.1       nicm      194: .It Fl v
                    195: Request verbose logging.
                    196: This option may be specified multiple times for increasing verbosity.
                    197: Log messages will be saved into
                    198: .Pa tmux-client-PID.log
                    199: and
                    200: .Pa tmux-server-PID.log
                    201: files in the current directory, where
                    202: .Em PID
1.6       jmc       203: is the PID of the server or client process.
1.1       nicm      204: .It Ar command Op Ar flags
                    205: This specifies one of a set of commands used to control
                    206: .Nm ,
1.6       jmc       207: as described in the following sections.
1.59      jmc       208: If no commands are specified, the
1.1       nicm      209: .Ic new-session
                    210: command is assumed.
1.57      jmc       211: .El
1.64      nicm      212: .Sh KEY BINDINGS
                    213: .Nm
                    214: may be controlled from an attached client by using a key combination of a
                    215: prefix key,
                    216: .Ql C-b
                    217: (Ctrl-b) by default, followed by a command key.
                    218: .Pp
1.172     nicm      219: The default command key bindings are:
1.64      nicm      220: .Pp
1.171     nicm      221: .Bl -tag -width "XXXXXXXXXX" -offset indent -compact
                    222: .It C-b
                    223: Send the prefix key (C-b) through to the application.
                    224: .It C-o
                    225: Rotate the panes in the current window forwards.
                    226: .It C-z
                    227: Suspend the
                    228: .Nm
                    229: client.
                    230: .It !
                    231: Break the current pane out of the window.
                    232: .It \&"
                    233: Split the current pane into two, top and bottom.
                    234: .It #
                    235: List all paste buffers.
1.236     nicm      236: .It $
                    237: Rename the current session.
1.171     nicm      238: .It %
                    239: Split the current pane into two, left and right.
                    240: .It &
                    241: Kill the current window.
                    242: .It '
                    243: Prompt for a window index to select.
                    244: .It ,
                    245: Rename the current window.
                    246: .It -
                    247: Delete the most recently copied buffer of text.
                    248: .It .
                    249: Prompt for an index to move the current window.
                    250: .It 0 to 9
                    251: Select windows 0 to 9.
                    252: .It :
                    253: Enter the
                    254: .Nm
                    255: command prompt.
1.187     nicm      256: .It ;
                    257: Move to the previously active pane.
1.178     nicm      258: .It =
                    259: Choose which buffer to paste interactively from a list.
1.171     nicm      260: .It \&?
                    261: List all key bindings.
                    262: .It D
                    263: Choose a client to detach.
1.182     jmc       264: .It \&[
1.171     nicm      265: Enter copy mode to copy text or view the history.
1.182     jmc       266: .It \&]
1.171     nicm      267: Paste the most recently copied buffer of text.
1.64      nicm      268: .It c
1.65      nicm      269: Create a new window.
1.64      nicm      270: .It d
1.65      nicm      271: Detach the current client.
1.171     nicm      272: .It f
                    273: Prompt to search for text in open windows.
                    274: .It i
                    275: Display some information about the current window.
1.64      nicm      276: .It l
1.65      nicm      277: Move to the previously selected window.
1.64      nicm      278: .It n
1.65      nicm      279: Change to the next window.
1.171     nicm      280: .It o
                    281: Select the next pane in the current window.
1.64      nicm      282: .It p
1.65      nicm      283: Change to the previous window.
1.171     nicm      284: .It q
                    285: Briefly display pane indexes.
                    286: .It r
                    287: Force redraw of the attached client.
                    288: .It s
                    289: Select a new session for the attached client interactively.
1.194     nicm      290: .It L
                    291: Switch the attached client back to the last session.
1.171     nicm      292: .It t
                    293: Show the time.
                    294: .It w
                    295: Choose the current window interactively.
                    296: .It x
                    297: Kill the current pane.
                    298: .It {
                    299: Swap the current pane with the previous pane.
                    300: .It }
                    301: Swap the current pane with the next pane.
                    302: .It ~
                    303: Show previous messages from
                    304: .Nm ,
                    305: if any.
                    306: .It Page Up
                    307: Enter copy mode and scroll one page up.
                    308: .It Up, Down
                    309: .It Left, Right
                    310: Change to the pane above, below, to the left, or to the right of the current
                    311: pane.
                    312: .It M-1 to M-5
                    313: Arrange panes in one of the five preset layouts: even-horizontal,
                    314: even-vertical, main-horizontal, main-vertical, or tiled.
                    315: .It M-n
                    316: Move to the next window with a bell or activity marker.
                    317: .It M-o
                    318: Rotate the panes in the current window backwards.
                    319: .It M-p
                    320: Move to the previous window with a bell or activity marker.
                    321: .It C-Up, C-Down
                    322: .It C-Left, C-Right
                    323: Resize the current pane in steps of one cell.
                    324: .It M-Up, M-Down
                    325: .It M-Left, M-Right
                    326: Resize the current pane in steps of five cells.
1.64      nicm      327: .El
                    328: .Pp
                    329: Key bindings may be changed with the
                    330: .Ic bind-key
                    331: and
                    332: .Ic unbind-key
                    333: commands.
1.57      jmc       334: .Sh COMMANDS
                    335: This section contains a list of the commands supported by
                    336: .Nm .
                    337: Most commands accept the optional
                    338: .Fl t
                    339: argument with one of
                    340: .Ar target-client ,
                    341: .Ar target-session
                    342: .Ar target-window ,
                    343: or
                    344: .Ar target-pane .
                    345: These specify the client, session, window or pane which a command should affect.
                    346: .Ar target-client
                    347: is the name of the
                    348: .Xr pty 4
                    349: file to which the client is connected, for example either of
                    350: .Pa /dev/ttyp1
                    351: or
                    352: .Pa ttyp1
                    353: for the client attached to
                    354: .Pa /dev/ttyp1 .
                    355: If no client is specified, the current client is chosen, if possible, or an
                    356: error is reported.
                    357: Clients may be listed with the
                    358: .Ic list-clients
                    359: command.
1.1       nicm      360: .Pp
1.57      jmc       361: .Ar target-session
                    362: is either the name of a session (as listed by the
                    363: .Ic list-sessions
                    364: command) or the name of a client with the same syntax as
                    365: .Ar target-client ,
                    366: in which case the session attached to the client is used.
                    367: When looking for the session name,
                    368: .Nm
                    369: initially searches for an exact match; if none is found, the session names
                    370: are checked for any for which
                    371: .Ar target-session
                    372: is a prefix or for which it matches as an
                    373: .Xr fnmatch 3
                    374: pattern.
                    375: If a single match is found, it is used as the target session; multiple matches
                    376: produce an error.
                    377: If a session is omitted, the current session is used if available; if no
1.117     nicm      378: current session is available, the most recently used is chosen.
1.1       nicm      379: .Pp
1.57      jmc       380: .Ar target-window
                    381: specifies a window in the form
                    382: .Em session Ns \&: Ns Em window .
                    383: .Em session
                    384: follows the same rules as for
                    385: .Ar target-session ,
                    386: and
                    387: .Em window
                    388: is looked for in order: as a window index, for example mysession:1; as an exact
                    389: window name, such as mysession:mywindow; then as an
                    390: .Xr fnmatch 3
                    391: pattern or the start of a window name, such as mysession:mywin* or
                    392: mysession:mywin.
                    393: An empty window name specifies the next unused index if appropriate (for
                    394: example the
                    395: .Ic new-window
                    396: and
                    397: .Ic link-window
                    398: commands)
                    399: otherwise the current window in
                    400: .Em session
                    401: is chosen.
1.140     nicm      402: The special character
                    403: .Ql \&!
                    404: uses the last (previously current) window, or
                    405: .Ql +
                    406: and
                    407: .Ql -
                    408: are the next window or the previous window by number.
1.57      jmc       409: When the argument does not contain a colon,
                    410: .Nm
                    411: first attempts to parse it as window; if that fails, an attempt is made to
                    412: match a session.
1.1       nicm      413: .Pp
1.57      jmc       414: .Ar target-pane
                    415: takes a similar form to
                    416: .Ar target-window
                    417: but with the optional addition of a period followed by a pane index, for
                    418: example: mysession:mywindow.1.
                    419: If the pane index is omitted, the currently active pane in the specified
                    420: window is used.
                    421: If neither a colon nor period appears,
1.13      nicm      422: .Nm
1.57      jmc       423: first attempts to use the argument as a pane index; if that fails, it is looked
                    424: up as for
                    425: .Ar target-window .
1.156     nicm      426: A
                    427: .Ql +
                    428: or
                    429: .Ql -
                    430: indicate the next or previous pane index, respectively.
1.132     nicm      431: One of the strings
                    432: .Em top ,
                    433: .Em bottom ,
                    434: .Em left ,
                    435: .Em right ,
                    436: .Em top-left ,
                    437: .Em top-right ,
1.216     nicm      438: .Em bottom-left
                    439: or
1.132     nicm      440: .Em bottom-right
                    441: may be used instead of a pane index.
1.177     nicm      442: .Pp
                    443: The special characters
                    444: .Ql +
                    445: and
                    446: .Ql -
                    447: may be followed by an offset, for example:
                    448: .Bd -literal -offset indent
                    449: select-window -t:+2
                    450: .Ed
                    451: .Pp
                    452: When dealing with a session that doesn't contain sequential window indexes,
                    453: they will be correctly skipped.
1.212     nicm      454: .Pp
                    455: .Nm
                    456: also gives each pane created in a server an identifier consisting of a
                    457: .Ql %
                    458: and a number, starting from zero.
                    459: A pane's identifier is unique for the life of the
                    460: .Nm
                    461: server and is passed to the child process of the pane in the
                    462: .Ev TMUX_PANE
                    463: environment variable.
                    464: It may be used alone to target a pane or the window containing it.
1.15      jmc       465: .Pp
1.153     nicm      466: .Ar shell-command
                    467: arguments are
                    468: .Xr sh 1
                    469: commands.
                    470: These must be passed as a single item, which typically means quoting them, for
                    471: example:
                    472: .Bd -literal -offset indent
                    473: new-window 'vi /etc/passwd'
                    474: .Ed
                    475: .Pp
                    476: .Ar command
                    477: .Op Ar arguments
                    478: refers to a
                    479: .Nm
                    480: command, passed with the command and arguments separately, for example:
                    481: .Bd -literal -offset indent
                    482: bind-key F1 set-window-option force-width 81
                    483: .Ed
                    484: .Pp
                    485: Or if using
                    486: .Xr sh 1 :
                    487: .Bd -literal -offset indent
                    488: $ tmux bind-key F1 set-window-option force-width 81
                    489: .Ed
                    490: .Pp
1.57      jmc       491: Multiple commands may be specified together as part of a
                    492: .Em command sequence .
                    493: Each command should be separated by spaces and a semicolon;
1.244     nicm      494: commands are executed sequentially from left to right and
                    495: lines ending with a backslash continue on to the next line.
1.57      jmc       496: A literal semicolon may be included by escaping it with a backslash (for
                    497: example, when specifying a command sequence to
                    498: .Ic bind-key ) .
1.13      nicm      499: .Pp
1.153     nicm      500: Example
                    501: .Nm
                    502: commands include:
1.13      nicm      503: .Bd -literal -offset indent
1.57      jmc       504: refresh-client -t/dev/ttyp2
                    505:
                    506: rename-session -tfirst newname
                    507:
                    508: set-window-option -t:0 monitor-activity on
                    509:
                    510: new-window ; split-window -d
1.244     nicm      511:
                    512: bind-key R source-file ~/.tmux.conf \e; \e
                    513:        display-message "source-file done"
1.13      nicm      514: .Ed
1.153     nicm      515: .Pp
                    516: Or from
                    517: .Xr sh 1 :
                    518: .Bd -literal -offset indent
                    519: $ tmux kill-window -t :1
                    520:
1.159     jmc       521: $ tmux new-window \e; split-window -d
1.153     nicm      522:
1.159     jmc       523: $ tmux new-session -d 'vi /etc/passwd' \e; split-window -d \e; attach
1.153     nicm      524: .Ed
1.57      jmc       525: .Sh CLIENTS AND SESSIONS
1.153     nicm      526: The
                    527: .Nm
                    528: server manages clients, sessions, windows and panes.
                    529: Clients are attached to sessions to interact with them, either
                    530: when they are created with the
                    531: .Ic new-session
                    532: command, or later with the
                    533: .Ic attach-session
                    534: command.
1.188     nicm      535: Each session has one or more windows
1.153     nicm      536: .Em linked
                    537: into it.
                    538: Windows may be linked to multiple sessions and are made up of one or
                    539: more panes,
                    540: each of which contains a pseudo terminal.
                    541: Commands for creating, linking and otherwise manipulating windows
                    542: are covered
                    543: in the
                    544: .Sx WINDOWS AND PANES
                    545: section.
                    546: .Pp
                    547: The following commands are available to manage clients and sessions:
1.57      jmc       548: .Bl -tag -width Ds
                    549: .It Xo Ic attach-session
1.148     nicm      550: .Op Fl dr
1.57      jmc       551: .Op Fl t Ar target-session
                    552: .Xc
                    553: .D1 (alias: Ic attach )
                    554: If run from outside
                    555: .Nm ,
                    556: create a new client in the current terminal and attach it to
                    557: .Ar target-session .
                    558: If used from inside, switch the current client.
                    559: If
                    560: .Fl d
                    561: is specified, any other clients attached to the session are detached.
1.148     nicm      562: .Fl r
                    563: signifies the client is read-only (only keys bound to the
                    564: .Ic detach-client
1.242     nicm      565: or
                    566: .Ic switch-client
                    567: commands have any effect)
1.13      nicm      568: .Pp
1.57      jmc       569: If no server is started,
                    570: .Ic attach-session
                    571: will attempt to start it; this will fail unless sessions are created in the
                    572: configuration file.
1.217     nicm      573: .Pp
                    574: The
                    575: .Ar target-session
                    576: rules for
                    577: .Ic attach-session
                    578: are slightly adjusted: if
                    579: .Nm
                    580: needs to select the most recently used session, it will prefer the most
                    581: recently used
                    582: .Em unattached
                    583: session.
1.211     nicm      584: .It Xo Ic detach-client
                    585: .Op Fl P
1.219     nicm      586: .Op Fl s Ar target-session
1.211     nicm      587: .Op Fl t Ar target-client
                    588: .Xc
1.57      jmc       589: .D1 (alias: Ic detach )
1.218     nicm      590: Detach the current client if bound to a key, the client specified with
                    591: .Fl t ,
1.258     jmc       592: or all clients currently attached to the session specified by
1.218     nicm      593: .Fl s .
1.211     nicm      594: If
                    595: .Fl P
                    596: is given, send SIGHUP to the parent process of the client, typically causing it
                    597: to exit.
1.57      jmc       598: .It Ic has-session Op Fl t Ar target-session
                    599: .D1 (alias: Ic has )
                    600: Report an error and exit with 1 if the specified session does not exist.
                    601: If it does exist, exit with 0.
                    602: .It Ic kill-server
                    603: Kill the
1.1       nicm      604: .Nm
1.57      jmc       605: server and clients and destroy all sessions.
                    606: .It Ic kill-session Op Fl t Ar target-session
                    607: Destroy the given session, closing any windows linked to it and no other
                    608: sessions, and detaching all clients attached to it.
1.250     nicm      609: .It Xo Ic list-clients
                    610: .Op Fl F Ar format
                    611: .Op Fl t Ar target-session
                    612: .Xc
1.57      jmc       613: .D1 (alias: Ic lsc )
1.221     jmc       614: List all clients attached to the server.
1.250     nicm      615: For the meaning of the
                    616: .Fl F
                    617: flag, see the
1.252     jmc       618: .Sx FORMATS
                    619: section.
1.221     jmc       620: If
1.220     nicm      621: .Ar target-session
                    622: is specified, list only clients connected to that session.
1.57      jmc       623: .It Ic list-commands
                    624: .D1 (alias: Ic lscm )
                    625: List the syntax of all commands supported by
                    626: .Nm .
1.247     nicm      627: .It Ic list-sessions Op Fl F Ar format
1.57      jmc       628: .D1 (alias: Ic ls )
                    629: List all sessions managed by the server.
1.247     nicm      630: For the meaning of the
                    631: .Fl F
                    632: flag, see the
                    633: .Sx FORMATS
                    634: section.
1.175     nicm      635: .It Ic lock-client Op Fl t Ar target-client
                    636: .D1 (alias: Ic lockc )
1.92      nicm      637: Lock
                    638: .Ar target-client ,
                    639: see the
                    640: .Ic lock-server
                    641: command.
1.175     nicm      642: .It Ic lock-session Op Fl t Ar target-session
                    643: .D1 (alias: Ic locks )
1.92      nicm      644: Lock all clients attached to
                    645: .Ar target-session .
1.57      jmc       646: .It Xo Ic new-session
                    647: .Op Fl d
                    648: .Op Fl n Ar window-name
                    649: .Op Fl s Ar session-name
1.101     nicm      650: .Op Fl t Ar target-session
1.210     nicm      651: .Op Fl x Ar width
                    652: .Op Fl y Ar height
1.153     nicm      653: .Op Ar shell-command
1.57      jmc       654: .Xc
                    655: .D1 (alias: Ic new )
                    656: Create a new session with name
                    657: .Ar session-name .
1.153     nicm      658: .Pp
1.57      jmc       659: The new session is attached to the current terminal unless
                    660: .Fl d
                    661: is given.
                    662: .Ar window-name
1.1       nicm      663: and
1.153     nicm      664: .Ar shell-command
                    665: are the name of and shell command to execute in the initial window.
1.210     nicm      666: If
                    667: .Fl d
                    668: is used,
                    669: .Fl x
                    670: and
                    671: .Fl y
                    672: specify the size of the initial window (80 by 24 if not given).
1.68      nicm      673: .Pp
                    674: If run from a terminal, any
                    675: .Xr termios 4
                    676: special characters are saved and used for new windows in the new session.
1.101     nicm      677: .Pp
                    678: If
                    679: .Fl t
                    680: is given, the new session is
                    681: .Em grouped
                    682: with
                    683: .Ar target-session .
                    684: This means they share the same set of windows - all windows from
                    685: .Ar target-session
                    686: are linked to the new session and any subsequent new windows or windows being
                    687: closed are applied to both sessions.
                    688: The current and previous window and any session options remain independent and
                    689: either session may be killed without affecting the other.
                    690: Giving
                    691: .Fl n
                    692: or
1.153     nicm      693: .Ar shell-command
1.101     nicm      694: are invalid if
                    695: .Fl t
                    696: is used.
1.248     nicm      697: .It Xo Ic refresh-client
                    698: .Op Fl S
                    699: .Op Fl t Ar target-client
                    700: .Xc
1.57      jmc       701: .D1 (alias: Ic refresh )
                    702: Refresh the current client if bound to a key, or a single client if one is given
                    703: with
                    704: .Fl t .
1.248     nicm      705: If
                    706: .Fl S
                    707: is specified, only update the client's status bar.
1.57      jmc       708: .It Xo Ic rename-session
                    709: .Op Fl t Ar target-session
                    710: .Ar new-name
                    711: .Xc
                    712: .D1 (alias: Ic rename )
                    713: Rename the session to
                    714: .Ar new-name .
1.121     nicm      715: .It Xo Ic show-messages
1.120     nicm      716: .Op Fl t Ar target-client
                    717: .Xc
                    718: .D1 (alias: Ic showmsgs )
                    719: Any messages displayed on the status line are saved in a per-client message
                    720: log, up to a maximum of the limit set by the
                    721: .Ar message-limit
                    722: session option for the session attached to that client.
                    723: This command displays the log for
                    724: .Ar target-client .
1.57      jmc       725: .It Ic source-file Ar path
                    726: .D1 (alias: Ic source )
                    727: Execute commands from
                    728: .Ar path .
                    729: .It Ic start-server
                    730: .D1 (alias: Ic start )
                    731: Start the
1.1       nicm      732: .Nm
1.57      jmc       733: server, if not already running, without creating any sessions.
                    734: .It Xo Ic suspend-client
1.202     nicm      735: .Op Fl t Ar target-client
1.57      jmc       736: .Xc
                    737: .D1 (alias: Ic suspendc )
                    738: Suspend a client by sending
                    739: .Dv SIGTSTP
                    740: (tty stop).
                    741: .It Xo Ic switch-client
1.242     nicm      742: .Op Fl lnpr
1.57      jmc       743: .Op Fl c Ar target-client
                    744: .Op Fl t Ar target-session
                    745: .Xc
                    746: .D1 (alias: Ic switchc )
                    747: Switch the current session for client
                    748: .Ar target-client
                    749: to
                    750: .Ar target-session .
1.183     nicm      751: If
1.197     jmc       752: .Fl l ,
1.183     nicm      753: .Fl n
                    754: or
                    755: .Fl p
1.194     nicm      756: is used, the client is moved to the last, next or previous session
                    757: respectively.
1.242     nicm      758: .Fl r
                    759: toggles whether a client is read-only (see the
                    760: .Ic attach-session
                    761: command).
1.57      jmc       762: .El
                    763: .Sh WINDOWS AND PANES
1.1       nicm      764: A
                    765: .Nm
                    766: window may be in one of several modes.
                    767: The default permits direct access to the terminal attached to the window.
1.164     nicm      768: The other is copy mode, which permits a section of a window or its
                    769: history to be copied to a
1.1       nicm      770: .Em paste buffer
                    771: for later insertion into another window.
                    772: This mode is entered with the
                    773: .Ic copy-mode
                    774: command, bound to
1.113     nicm      775: .Ql \&[
1.1       nicm      776: by default.
1.164     nicm      777: It is also entered when a command that produces output, such as
                    778: .Ic list-keys ,
                    779: is executed from a key binding.
1.1       nicm      780: .Pp
1.6       jmc       781: The keys available depend on whether emacs or vi mode is selected
                    782: (see the
1.1       nicm      783: .Ic mode-keys
                    784: option).
                    785: The following keys are supported as appropriate for the mode:
1.157     nicm      786: .Bl -column "FunctionXXXXXXXXXXXXXXXXX" "viXXXXXXXXXX" "emacs" -offset indent
1.1       nicm      787: .It Sy "Function" Ta Sy "vi" Ta Sy "emacs"
1.27      nicm      788: .It Li "Back to indentation" Ta "^" Ta "M-m"
1.142     nicm      789: .It Li "Bottom of history" Ta "G" Ta "M-<"
1.1       nicm      790: .It Li "Clear selection" Ta "Escape" Ta "C-g"
                    791: .It Li "Copy selection" Ta "Enter" Ta "M-w"
                    792: .It Li "Cursor down" Ta "j" Ta "Down"
1.70      nicm      793: .It Li "Cursor left" Ta "h" Ta "Left"
                    794: .It Li "Cursor right" Ta "l" Ta "Right"
1.116     nicm      795: .It Li "Cursor to bottom line" Ta "L" Ta ""
                    796: .It Li "Cursor to middle line" Ta "M" Ta "M-r"
                    797: .It Li "Cursor to top line" Ta "H" Ta "M-R"
1.70      nicm      798: .It Li "Cursor up" Ta "k" Ta "Up"
1.71      nicm      799: .It Li "Delete entire line" Ta "d" Ta "C-u"
1.227     nicm      800: .It Li "Delete/Copy to end of line" Ta "D" Ta "C-k"
1.1       nicm      801: .It Li "End of line" Ta "$" Ta "C-e"
1.142     nicm      802: .It Li "Go to line" Ta ":" Ta "g"
1.116     nicm      803: .It Li "Half page down" Ta "C-d" Ta "M-Down"
                    804: .It Li "Half page up" Ta "C-u" Ta "M-Up"
1.157     nicm      805: .It Li "Jump forward" Ta "f" Ta "f"
1.256     nicm      806: .It Li "Jump to forward" Ta "t" Ta ""
1.157     nicm      807: .It Li "Jump backward" Ta "F" Ta "F"
1.256     nicm      808: .It Li "Jump to backward" Ta "T" Ta ""
1.157     nicm      809: .It Li "Jump again" Ta ";" Ta ";"
                    810: .It Li "Jump again in reverse" Ta "," Ta ","
1.1       nicm      811: .It Li "Next page" Ta "C-f" Ta "Page down"
1.146     nicm      812: .It Li "Next space" Ta "W" Ta ""
                    813: .It Li "Next space, end of word" Ta "E" Ta ""
1.143     nicm      814: .It Li "Next word" Ta "w" Ta ""
                    815: .It Li "Next word end" Ta "e" Ta "M-f"
1.70      nicm      816: .It Li "Paste buffer" Ta "p" Ta "C-y"
1.116     nicm      817: .It Li "Previous page" Ta "C-b" Ta "Page up"
1.1       nicm      818: .It Li "Previous word" Ta "b" Ta "M-b"
1.146     nicm      819: .It Li "Previous space" Ta "B" Ta ""
1.1       nicm      820: .It Li "Quit mode" Ta "q" Ta "Escape"
1.147     nicm      821: .It Li "Rectangle toggle" Ta "v" Ta "R"
1.141     nicm      822: .It Li "Scroll down" Ta "C-Down or C-e" Ta "C-Down"
                    823: .It Li "Scroll up" Ta "C-Up or C-y" Ta "C-Up"
1.70      nicm      824: .It Li "Search again" Ta "n" Ta "n"
1.152     nicm      825: .It Li "Search again in reverse" Ta "N" Ta "N"
1.70      nicm      826: .It Li "Search backward" Ta "?" Ta "C-r"
                    827: .It Li "Search forward" Ta "/" Ta "C-s"
                    828: .It Li "Start of line" Ta "0" Ta "C-a"
1.1       nicm      829: .It Li "Start selection" Ta "Space" Ta "C-Space"
1.142     nicm      830: .It Li "Top of history" Ta "g" Ta "M->"
1.80      nicm      831: .It Li "Transpose chars" Ta "" Ta "C-t"
1.1       nicm      832: .El
1.146     nicm      833: .Pp
                    834: The next and previous word keys use space and the
                    835: .Ql - ,
1.154     nicm      836: .Ql _
1.146     nicm      837: and
                    838: .Ql @
1.154     nicm      839: characters as word delimiters by default, but this can be adjusted by
                    840: setting the
                    841: .Em word-separators
1.255     nicm      842: session option.
1.146     nicm      843: Next word moves to the start of the next word, next word end to the end of the
                    844: next word and previous word to the start of the previous word.
                    845: The three next and previous space keys work similarly but use a space alone as
                    846: the word separator.
1.157     nicm      847: .Pp
                    848: The jump commands enable quick movement within a line.
                    849: For instance, typing
                    850: .Ql f
                    851: followed by
                    852: .Ql /
                    853: will move the cursor to the next
                    854: .Ql /
                    855: character on the current line.
                    856: A
                    857: .Ql \&;
                    858: will then jump to the next occurrence.
1.1       nicm      859: .Pp
1.155     nicm      860: Commands in copy mode may be prefaced by an optional repeat count.
                    861: With vi key bindings, a prefix is entered using the number keys; with
                    862: emacs, the Alt (meta) key and a number begins prefix entry.
                    863: For example, to move the cursor forward by ten words, use
                    864: .Ql M-1 0 M-f
                    865: in emacs mode, and
                    866: .Ql 10w
                    867: in vi.
                    868: .Pp
1.254     nicm      869: When copying the selection, the repeat count indicates the buffer index to
                    870: replace, if used.
                    871: .Pp
1.155     nicm      872: Mode key bindings are defined in a set of named tables:
1.48      nicm      873: .Em vi-edit
                    874: and
                    875: .Em emacs-edit
                    876: for keys used when line editing at the command prompt;
                    877: .Em vi-choice
                    878: and
                    879: .Em emacs-choice
                    880: for keys used when choosing from lists (such as produced by the
1.144     nicm      881: .Ic choose-window
1.164     nicm      882: command); and
1.48      nicm      883: .Em vi-copy
                    884: and
                    885: .Em emacs-copy
1.97      nicm      886: used in copy mode.
1.48      nicm      887: The tables may be viewed with the
                    888: .Ic list-keys
1.49      nicm      889: command and keys modified or removed with
                    890: .Ic bind-key
                    891: and
                    892: .Ic unbind-key .
1.48      nicm      893: .Pp
1.2       nicm      894: The paste buffer key pastes the first line from the top paste buffer on the
                    895: stack.
1.57      jmc       896: .Pp
1.164     nicm      897: The synopsis for the
                    898: .Ic copy-mode
                    899: command is:
1.57      jmc       900: .Bl -tag -width Ds
                    901: .It Xo Ic copy-mode
                    902: .Op Fl u
1.72      nicm      903: .Op Fl t Ar target-pane
1.57      jmc       904: .Xc
                    905: Enter copy mode.
                    906: The
                    907: .Fl u
                    908: option scrolls one page up.
                    909: .El
1.18      nicm      910: .Pp
1.1       nicm      911: Each window displayed by
                    912: .Nm
                    913: may be split into one or more
                    914: .Em panes ;
                    915: each pane takes up a certain area of the display and is a separate terminal.
                    916: A window may be split into panes using the
                    917: .Ic split-window
                    918: command.
1.38      nicm      919: Windows may be split horizontally (with the
                    920: .Fl h
                    921: flag) or vertically.
                    922: Panes may be resized with the
                    923: .Ic resize-pane
1.1       nicm      924: command (bound to
1.38      nicm      925: .Ql C-up ,
                    926: .Ql C-down
                    927: .Ql C-left
                    928: and
                    929: .Ql C-right
1.1       nicm      930: by default), the current pane may be changed with the
1.156     nicm      931: .Ic select-pane
                    932: command and the
1.1       nicm      933: .Ic rotate-window
                    934: and
                    935: .Ic swap-pane
1.38      nicm      936: commands may be used to swap panes without changing their position.
                    937: Panes are numbered beginning from zero in the order they are created.
                    938: .Pp
                    939: A number of preset
                    940: .Em layouts
                    941: are available.
                    942: These may be selected with the
                    943: .Ic select-layout
                    944: command or cycled with
                    945: .Ic next-layout
                    946: (bound to
1.149     nicm      947: .Ql Space
1.131     nicm      948: by default); once a layout is chosen, panes within it may be moved and resized
                    949: as normal.
1.1       nicm      950: .Pp
                    951: The following layouts are supported:
                    952: .Bl -tag -width Ds
                    953: .It Ic even-horizontal
                    954: Panes are spread out evenly from left to right across the window.
                    955: .It Ic even-vertical
                    956: Panes are spread evenly from top to bottom.
1.2       nicm      957: .It Ic main-horizontal
1.131     nicm      958: A large (main) pane is shown at the top of the window and the remaining panes
                    959: are spread from left to right in the leftover space at the bottom.
1.2       nicm      960: Use the
                    961: .Em main-pane-height
                    962: window option to specify the height of the top pane.
1.1       nicm      963: .It Ic main-vertical
1.2       nicm      964: Similar to
                    965: .Ic main-horizontal
                    966: but the large pane is placed on the left and the others spread from top to
                    967: bottom along the right.
                    968: See the
                    969: .Em main-pane-width
                    970: window option.
1.165     nicm      971: .It Ic tiled
                    972: Panes are spread out as evenly as possible over the window in both rows and
                    973: columns.
1.1       nicm      974: .El
1.8       nicm      975: .Pp
1.181     nicm      976: In addition,
                    977: .Ic select-layout
                    978: may be used to apply a previously used layout - the
                    979: .Ic list-windows
                    980: command displays the layout of each window in a form suitable for use with
                    981: .Ic select-layout .
                    982: For example:
                    983: .Bd -literal -offset indent
                    984: $ tmux list-windows
                    985: 0: ksh [159x48]
                    986:     layout: bb62,159x48,0,0{79x48,0,0,79x48,80,0}
                    987: $ tmux select-layout bb62,159x48,0,0{79x48,0,0,79x48,80,0}
                    988: .Ed
1.196     nicm      989: .Pp
1.181     nicm      990: .Nm
                    991: automatically adjusts the size of the layout for the current window size.
                    992: Note that a layout cannot be applied to a window with more panes than that
                    993: from which the layout was originally defined.
                    994: .Pp
1.57      jmc       995: Commands related to windows and panes are as follows:
                    996: .Bl -tag -width Ds
                    997: .It Xo Ic break-pane
                    998: .Op Fl d
                    999: .Op Fl t Ar target-pane
                   1000: .Xc
                   1001: .D1 (alias: Ic breakp )
                   1002: Break
                   1003: .Ar target-pane
                   1004: off from its containing window to make it the only pane in a new window.
                   1005: If
                   1006: .Fl d
                   1007: is given, the new window does not become the current window.
1.128     nicm     1008: .It Xo Ic capture-pane
                   1009: .Op Fl b Ar buffer-index
1.213     nicm     1010: .Op Fl E Ar end-line
                   1011: .Op Fl S Ar start-line
1.128     nicm     1012: .Op Fl t Ar target-pane
                   1013: .Xc
                   1014: .D1 (alias: Ic capturep )
                   1015: Capture the contents of a pane to the specified buffer, or a new buffer if none
                   1016: is specified.
1.213     nicm     1017: .Pp
                   1018: .Fl S
                   1019: and
                   1020: .Fl E
                   1021: specify the starting and ending line numbers, zero is the first line of the
                   1022: visible pane and negative numbers are lines in the history.
                   1023: The default is to capture only the visible contents of the pane.
1.76      nicm     1024: .It Xo
                   1025: .Ic choose-client
                   1026: .Op Fl t Ar target-window
                   1027: .Op Ar template
                   1028: .Xc
                   1029: Put a window into client choice mode, allowing a client to be selected
                   1030: interactively from a list.
                   1031: After a client is chosen,
                   1032: .Ql %%
                   1033: is replaced by the client
                   1034: .Xr pty 4
                   1035: path in
                   1036: .Ar template
                   1037: and the result executed as a command.
                   1038: If
                   1039: .Ar template
                   1040: is not given, "detach-client -t '%%'" is used.
1.57      jmc      1041: This command works only from inside
                   1042: .Nm .
1.76      nicm     1043: .It Xo
                   1044: .Ic choose-session
                   1045: .Op Fl t Ar target-window
                   1046: .Op Ar template
                   1047: .Xc
                   1048: Put a window into session choice mode, where a session may be selected
                   1049: interactively from a list.
                   1050: When one is chosen,
                   1051: .Ql %%
                   1052: is replaced by the session name in
                   1053: .Ar template
                   1054: and the result executed as a command.
                   1055: If
                   1056: .Ar template
                   1057: is not given, "switch-client -t '%%'" is used.
                   1058: This command works only from inside
                   1059: .Nm .
                   1060: .It Xo
                   1061: .Ic choose-window
                   1062: .Op Fl t Ar target-window
                   1063: .Op Ar template
                   1064: .Xc
                   1065: Put a window into window choice mode, where a window may be chosen
                   1066: interactively from a list.
                   1067: After a window is selected,
                   1068: .Ql %%
                   1069: is replaced by the session name and window index in
                   1070: .Ar template
                   1071: and the result executed as a command.
                   1072: If
                   1073: .Ar template
                   1074: is not given, "select-window -t '%%'" is used.
1.57      jmc      1075: This command works only from inside
                   1076: .Nm .
1.78      nicm     1077: .It Ic display-panes Op Fl t Ar target-client
                   1078: .D1 (alias: Ic displayp)
                   1079: Display a visible indicator of each pane shown by
                   1080: .Ar target-client .
                   1081: See the
1.145     nicm     1082: .Ic display-panes-time ,
                   1083: .Ic display-panes-colour ,
1.78      nicm     1084: and
1.145     nicm     1085: .Ic display-panes-active-colour
1.78      nicm     1086: session options.
1.84      nicm     1087: While the indicator is on screen, a pane may be selected with the
                   1088: .Ql 0
                   1089: to
                   1090: .Ql 9
                   1091: keys.
1.57      jmc      1092: .It Xo Ic find-window
                   1093: .Op Fl t Ar target-window
                   1094: .Ar match-string
                   1095: .Xc
                   1096: .D1 (alias: Ic findw )
                   1097: Search for the
                   1098: .Xr fnmatch 3
                   1099: pattern
                   1100: .Ar match-string
                   1101: in window names, titles, and visible content (but not history).
                   1102: If only one window is matched, it'll be automatically selected, otherwise a
                   1103: choice list is shown.
                   1104: This command only works from inside
1.1       nicm     1105: .Nm .
1.137     nicm     1106: .It Xo Ic join-pane
                   1107: .Op Fl dhv
                   1108: .Oo Fl l
                   1109: .Ar size |
                   1110: .Fl p Ar percentage Oc
                   1111: .Op Fl s Ar src-pane
                   1112: .Op Fl t Ar dst-pane
                   1113: .Xc
                   1114: .D1 (alias: Ic joinp )
                   1115: Like
                   1116: .Ic split-window ,
                   1117: but instead of splitting
                   1118: .Ar dst-pane
                   1119: and creating a new pane, split it and move
                   1120: .Ar src-pane
                   1121: into the space.
                   1122: This can be used to reverse
                   1123: .Ic break-pane .
1.112     nicm     1124: .It Xo Ic kill-pane
                   1125: .Op Fl a
                   1126: .Op Fl t Ar target-pane
                   1127: .Xc
1.57      jmc      1128: .D1 (alias: Ic killp )
                   1129: Destroy the given pane.
                   1130: If no panes remain in the containing window, it is also destroyed.
1.112     nicm     1131: The
                   1132: .Fl a
                   1133: option kills all but the pane given with
                   1134: .Fl t .
1.57      jmc      1135: .It Ic kill-window Op Fl t Ar target-window
                   1136: .D1 (alias: Ic killw )
                   1137: Kill the current window or the window at
                   1138: .Ar target-window ,
1.1       nicm     1139: removing it from any sessions to which it is linked.
1.187     nicm     1140: .It Ic last-pane Op Fl t Ar target-window
                   1141: .D1 (alias: Ic lastp )
                   1142: Select the last (previously selected) pane.
1.56      jmc      1143: .It Ic last-window Op Fl t Ar target-session
1.1       nicm     1144: .D1 (alias: Ic last )
                   1145: Select the last (previously selected) window.
                   1146: If no
                   1147: .Ar target-session
                   1148: is specified, select the last window of the current session.
                   1149: .It Xo Ic link-window
                   1150: .Op Fl dk
                   1151: .Op Fl s Ar src-window
                   1152: .Op Fl t Ar dst-window
                   1153: .Xc
                   1154: .D1 (alias: Ic linkw )
                   1155: Link the window at
                   1156: .Ar src-window
                   1157: to the specified
                   1158: .Ar dst-window .
                   1159: If
                   1160: .Ar dst-window
                   1161: is specified and no such window exists, the
                   1162: .Ar src-window
                   1163: is linked there.
                   1164: If
                   1165: .Fl k
                   1166: is given and
                   1167: .Ar dst-window
                   1168: exists, it is killed, otherwise an error is generated.
                   1169: If
                   1170: .Fl d
                   1171: is given, the newly linked window is not selected.
1.214     nicm     1172: .It Xo Ic list-panes
                   1173: .Op Fl as
1.245     nicm     1174: .Op Fl F Ar format
1.214     nicm     1175: .Op Fl t Ar target
                   1176: .Xc
1.104     nicm     1177: .D1 (alias: Ic lsp )
1.214     nicm     1178: If
                   1179: .Fl a
                   1180: is given,
                   1181: .Ar target
                   1182: is ignored and all panes on the server are listed.
                   1183: If
                   1184: .Fl s
                   1185: is given,
                   1186: .Ar target
                   1187: is a session (or the current session).
                   1188: If neither is given,
                   1189: .Ar target
                   1190: is a window (or the current window).
1.247     nicm     1191: For the meaning of the
                   1192: .Fl F
                   1193: flag, see the
                   1194: .Sx FORMATS
                   1195: section.
1.214     nicm     1196: .It Xo Ic list-windows
                   1197: .Op Fl a
1.245     nicm     1198: .Op Fl F Ar format
1.214     nicm     1199: .Op Fl t Ar target-session
                   1200: .Xc
1.1       nicm     1201: .D1 (alias: Ic lsw )
1.214     nicm     1202: If
                   1203: .Fl a
                   1204: is given, list all windows on the server.
                   1205: Otherwise, list windows in the current session or in
1.1       nicm     1206: .Ar target-session .
1.245     nicm     1207: For the meaning of the
                   1208: .Fl F
                   1209: flag, see the
                   1210: .Sx FORMATS
                   1211: section.
1.1       nicm     1212: .It Xo Ic move-window
1.175     nicm     1213: .Op Fl dk
1.1       nicm     1214: .Op Fl s Ar src-window
                   1215: .Op Fl t Ar dst-window
                   1216: .Xc
                   1217: .D1 (alias: Ic movew )
                   1218: This is similar to
                   1219: .Ic link-window ,
                   1220: except the window at
                   1221: .Ar src-window
                   1222: is moved to
                   1223: .Ar dst-window .
                   1224: .It Xo Ic new-window
1.201     nicm     1225: .Op Fl adkP
1.1       nicm     1226: .Op Fl n Ar window-name
                   1227: .Op Fl t Ar target-window
1.153     nicm     1228: .Op Ar shell-command
1.1       nicm     1229: .Xc
                   1230: .D1 (alias: Ic neww )
                   1231: Create a new window.
1.160     nicm     1232: With
                   1233: .Fl a ,
                   1234: the new window is inserted at the next index up from the specified
                   1235: .Ar target-window ,
                   1236: moving windows up if necessary,
                   1237: otherwise
                   1238: .Ar target-window
                   1239: is the new window location.
                   1240: .Pp
1.1       nicm     1241: If
                   1242: .Fl d
                   1243: is given, the session does not make the new window the current window.
                   1244: .Ar target-window
1.28      nicm     1245: represents the window to be created; if the target already exists an error is
                   1246: shown, unless the
                   1247: .Fl k
                   1248: flag is used, in which case it is destroyed.
1.153     nicm     1249: .Ar shell-command
1.1       nicm     1250: is the command to execute.
                   1251: If
1.153     nicm     1252: .Ar shell-command
                   1253: is not specified, the value of the
                   1254: .Ic default-command
                   1255: option is used.
                   1256: .Pp
                   1257: When the shell command completes, the window closes.
                   1258: See the
                   1259: .Ic remain-on-exit
                   1260: option to change this behaviour.
1.1       nicm     1261: .Pp
                   1262: The
                   1263: .Ev TERM
                   1264: environment variable must be set to
                   1265: .Dq screen
                   1266: for all programs running
                   1267: .Em inside
                   1268: .Nm .
                   1269: New windows will automatically have
                   1270: .Dq TERM=screen
                   1271: added to their environment, but care must be taken not to reset this in shell
                   1272: start-up files.
1.201     nicm     1273: .Pp
                   1274: The
                   1275: .Fl P
                   1276: option prints the location of the new window after it has been created.
1.56      jmc      1277: .It Ic next-layout Op Fl t Ar target-window
1.1       nicm     1278: .D1 (alias: Ic nextl )
                   1279: Move a window to the next layout and rearrange the panes to fit.
                   1280: .It Xo Ic next-window
1.9       nicm     1281: .Op Fl a
1.1       nicm     1282: .Op Fl t Ar target-session
                   1283: .Xc
                   1284: .D1 (alias: Ic next )
                   1285: Move to the next window in the session.
1.9       nicm     1286: If
1.12      jmc      1287: .Fl a
1.9       nicm     1288: is used, move to the next window with a bell, activity or content alert.
1.107     nicm     1289: .It Xo Ic pipe-pane
                   1290: .Op Fl o
                   1291: .Op Fl t Ar target-pane
1.153     nicm     1292: .Op Ar shell-command
1.107     nicm     1293: .Xc
                   1294: .D1 (alias: Ic pipep )
                   1295: Pipe any output sent by the program in
                   1296: .Ar target-pane
                   1297: to a shell command.
                   1298: A pane may only be piped to one command at a time, any existing pipe is
                   1299: closed before
1.153     nicm     1300: .Ar shell-command
1.107     nicm     1301: is executed.
1.174     nicm     1302: The
                   1303: .Ar shell-command
                   1304: string may contain the special character sequences supported by the
                   1305: .Ic status-left
1.231     nicm     1306: option.
1.107     nicm     1307: If no
1.153     nicm     1308: .Ar shell-command
1.107     nicm     1309: is given, the current pipe (if any) is closed.
                   1310: .Pp
                   1311: The
                   1312: .Fl o
                   1313: option only opens a new pipe if no previous pipe exists, allowing a pipe to
                   1314: be toggled with a single key, for example:
                   1315: .Bd -literal -offset indent
1.174     nicm     1316: bind-key C-p pipe-pane -o 'cat >>~/output.#I-#P'
1.107     nicm     1317: .Ed
1.176     nicm     1318: .It Xo Ic previous-layout
                   1319: .Op Fl t Ar target-window
                   1320: .Xc
                   1321: .D1 (alias: Ic prevl )
                   1322: Move to the previous layout in the session.
1.1       nicm     1323: .It Xo Ic previous-window
1.9       nicm     1324: .Op Fl a
1.1       nicm     1325: .Op Fl t Ar target-session
                   1326: .Xc
                   1327: .D1 (alias: Ic prev )
                   1328: Move to the previous window in the session.
1.9       nicm     1329: With
                   1330: .Fl a ,
                   1331: move to the previous window with a bell, activity or content alert.
1.1       nicm     1332: .It Xo Ic rename-window
                   1333: .Op Fl t Ar target-window
                   1334: .Ar new-name
                   1335: .Xc
                   1336: .D1 (alias: Ic renamew )
                   1337: Rename the current window, or the window at
                   1338: .Ar target-window
                   1339: if specified, to
                   1340: .Ar new-name .
                   1341: .It Xo Ic resize-pane
1.39      jmc      1342: .Op Fl DLRU
1.52      nicm     1343: .Op Fl t Ar target-pane
1.1       nicm     1344: .Op Ar adjustment
                   1345: .Xc
                   1346: .D1 (alias: Ic resizep )
1.57      jmc      1347: Resize a pane, upward with
                   1348: .Fl U
                   1349: (the default), downward with
                   1350: .Fl D ,
                   1351: to the left with
                   1352: .Fl L
                   1353: and to the right with
                   1354: .Fl R .
                   1355: The
                   1356: .Ar adjustment
                   1357: is given in lines or cells (the default is 1).
1.234     nicm     1358: .It Xo Ic respawn-pane
                   1359: .Op Fl k
                   1360: .Op Fl t Ar target-pane
                   1361: .Op Ar shell-command
                   1362: .Xc
                   1363: .D1 (alias: Ic respawnp )
                   1364: Reactivate a pane in which the command has exited (see the
                   1365: .Ic remain-on-exit
                   1366: window option).
                   1367: If
                   1368: .Ar shell-command
                   1369: is not given, the command used when the pane was created is executed.
                   1370: The pane must be already inactive, unless
                   1371: .Fl k
                   1372: is given, in which case any existing command is killed.
1.57      jmc      1373: .It Xo Ic respawn-window
                   1374: .Op Fl k
                   1375: .Op Fl t Ar target-window
1.153     nicm     1376: .Op Ar shell-command
1.57      jmc      1377: .Xc
                   1378: .D1 (alias: Ic respawnw )
1.153     nicm     1379: Reactivate a window in which the command has exited (see the
1.57      jmc      1380: .Ic remain-on-exit
                   1381: window option).
                   1382: If
1.153     nicm     1383: .Ar shell-command
1.57      jmc      1384: is not given, the command used when the window was created is executed.
                   1385: The window must be already inactive, unless
                   1386: .Fl k
                   1387: is given, in which case any existing command is killed.
                   1388: .It Xo Ic rotate-window
                   1389: .Op Fl DU
                   1390: .Op Fl t Ar target-window
                   1391: .Xc
                   1392: .D1 (alias: Ic rotatew )
                   1393: Rotate the positions of the panes within a window, either upward (numerically
                   1394: lower) with
                   1395: .Fl U
                   1396: or downward (numerically higher).
                   1397: .It Xo Ic select-layout
1.204     nicm     1398: .Op Fl np
1.57      jmc      1399: .Op Fl t Ar target-window
                   1400: .Op Ar layout-name
                   1401: .Xc
1.176     nicm     1402: .D1 (alias: Ic selectl )
1.57      jmc      1403: Choose a specific layout for a window.
                   1404: If
                   1405: .Ar layout-name
1.181     nicm     1406: is not given, the last preset layout used (if any) is reapplied.
1.204     nicm     1407: .Fl n
                   1408: and
                   1409: .Fl p
                   1410: are equivalent to the
                   1411: .Ic next-layout
                   1412: and
                   1413: .Ic previous-layout
                   1414: commands.
1.156     nicm     1415: .It Xo Ic select-pane
1.204     nicm     1416: .Op Fl lDLRU
1.156     nicm     1417: .Op Fl t Ar target-pane
                   1418: .Xc
1.57      jmc      1419: .D1 (alias: Ic selectp )
                   1420: Make pane
                   1421: .Ar target-pane
                   1422: the active pane in window
                   1423: .Ar target-window .
1.156     nicm     1424: If one of
                   1425: .Fl D ,
                   1426: .Fl L ,
                   1427: .Fl R ,
                   1428: or
                   1429: .Fl U
                   1430: is used, respectively the pane below, to the left, to the right, or above the
                   1431: target pane is used.
1.204     nicm     1432: .Fl l
                   1433: is the same as using the
                   1434: .Ic last-pane
                   1435: command.
                   1436: .It Xo Ic select-window
                   1437: .Op Fl lnp
                   1438: .Op Fl t Ar target-window
                   1439: .Xc
1.57      jmc      1440: .D1 (alias: Ic selectw )
                   1441: Select the window at
                   1442: .Ar target-window .
1.204     nicm     1443: .Fl l ,
                   1444: .Fl n
                   1445: and
                   1446: .Fl p
                   1447: are equivalent to the
                   1448: .Ic last-window ,
                   1449: .Ic next-window
                   1450: and
                   1451: .Ic previous-window
                   1452: commands.
1.57      jmc      1453: .It Xo Ic split-window
1.201     nicm     1454: .Op Fl dhvP
1.57      jmc      1455: .Oo Fl l
                   1456: .Ar size |
                   1457: .Fl p Ar percentage Oc
1.136     nicm     1458: .Op Fl t Ar target-pane
1.153     nicm     1459: .Op Ar shell-command
1.57      jmc      1460: .Xc
1.176     nicm     1461: .D1 (alias: Ic splitw )
1.136     nicm     1462: Create a new pane by splitting
                   1463: .Ar target-pane :
1.57      jmc      1464: .Fl h
                   1465: does a horizontal split and
                   1466: .Fl v
                   1467: a vertical split; if neither is specified,
                   1468: .Fl v
                   1469: is assumed.
                   1470: The
                   1471: .Fl l
                   1472: and
                   1473: .Fl p
1.136     nicm     1474: options specify the size of the new pane in lines (for vertical split) or in
1.57      jmc      1475: cells (for horizontal split), or as a percentage, respectively.
1.136     nicm     1476: All other options have the same meaning as for the
1.57      jmc      1477: .Ic new-window
                   1478: command.
                   1479: .It Xo Ic swap-pane
                   1480: .Op Fl dDU
                   1481: .Op Fl s Ar src-pane
                   1482: .Op Fl t Ar dst-pane
                   1483: .Xc
                   1484: .D1 (alias: Ic swapp )
                   1485: Swap two panes.
                   1486: If
                   1487: .Fl U
                   1488: is used and no source pane is specified with
                   1489: .Fl s ,
                   1490: .Ar dst-pane
                   1491: is swapped with the previous pane (before it numerically);
                   1492: .Fl D
                   1493: swaps with the next pane (after it numerically).
1.138     nicm     1494: .Fl d
                   1495: instructs
                   1496: .Nm
                   1497: not to change the active pane.
1.57      jmc      1498: .It Xo Ic swap-window
                   1499: .Op Fl d
                   1500: .Op Fl s Ar src-window
                   1501: .Op Fl t Ar dst-window
                   1502: .Xc
                   1503: .D1 (alias: Ic swapw )
                   1504: This is similar to
                   1505: .Ic link-window ,
                   1506: except the source and destination windows are swapped.
                   1507: It is an error if no window exists at
                   1508: .Ar src-window .
                   1509: .It Xo Ic unlink-window
1.1       nicm     1510: .Op Fl k
                   1511: .Op Fl t Ar target-window
                   1512: .Xc
1.57      jmc      1513: .D1 (alias: Ic unlinkw )
                   1514: Unlink
                   1515: .Ar target-window .
                   1516: Unless
                   1517: .Fl k
                   1518: is given, a window may be unlinked only if it is linked to multiple sessions -
                   1519: windows may not be linked to no sessions;
                   1520: if
1.1       nicm     1521: .Fl k
1.57      jmc      1522: is specified and the window is linked to only one session, it is unlinked and
                   1523: destroyed.
                   1524: .El
                   1525: .Sh KEY BINDINGS
1.93      nicm     1526: .Nm
                   1527: allows a command to be bound to most keys, with or without a prefix key.
                   1528: When specifying keys, most represent themselves (for example
                   1529: .Ql A
                   1530: to
1.95      jmc      1531: .Ql Z ) .
1.93      nicm     1532: Ctrl keys may be prefixed with
                   1533: .Ql C-
                   1534: or
1.95      jmc      1535: .Ql ^ ,
                   1536: and Alt (meta) with
1.93      nicm     1537: .Ql M- .
                   1538: In addition, the following special key names are accepted:
1.126     nicm     1539: .Em Up ,
                   1540: .Em Down ,
                   1541: .Em Left ,
                   1542: .Em Right ,
1.93      nicm     1543: .Em BSpace ,
                   1544: .Em BTab ,
                   1545: .Em DC
                   1546: (Delete),
                   1547: .Em End ,
                   1548: .Em Enter ,
                   1549: .Em Escape ,
                   1550: .Em F1
                   1551: to
                   1552: .Em F20 ,
                   1553: .Em Home ,
                   1554: .Em IC
                   1555: (Insert),
1.254     nicm     1556: .Em NPage/PageDown/PgDn ,
                   1557: .Em PPage/PageUp/PgUp ,
1.93      nicm     1558: .Em Space ,
                   1559: and
                   1560: .Em Tab .
                   1561: Note that to bind the
                   1562: .Ql \&"
                   1563: or
                   1564: .Ql '
                   1565: keys, quotation marks are necessary, for example:
                   1566: .Bd -literal -offset indent
                   1567: bind-key '"' split-window
1.167     nicm     1568: bind-key "'" new-window
1.93      nicm     1569: .Ed
                   1570: .Pp
1.57      jmc      1571: Commands related to key bindings are as follows:
                   1572: .Bl -tag -width Ds
                   1573: .It Xo Ic bind-key
                   1574: .Op Fl cnr
                   1575: .Op Fl t Ar key-table
                   1576: .Ar key Ar command Op Ar arguments
1.1       nicm     1577: .Xc
1.57      jmc      1578: .D1 (alias: Ic bind )
                   1579: Bind key
                   1580: .Ar key
                   1581: to
                   1582: .Ar command .
                   1583: By default (without
                   1584: .Fl t )
                   1585: the primary key bindings are modified (those normally activated with the prefix
                   1586: key); in this case, if
                   1587: .Fl n
                   1588: is specified, it is not necessary to use the prefix key,
                   1589: .Ar command
                   1590: is bound to
                   1591: .Ar key
                   1592: alone.
1.1       nicm     1593: The
1.57      jmc      1594: .Fl r
                   1595: flag indicates this key may repeat, see the
                   1596: .Ic repeat-time
                   1597: option.
                   1598: .Pp
                   1599: If
                   1600: .Fl t
                   1601: is present,
                   1602: .Ar key
                   1603: is bound in
                   1604: .Ar key-table :
                   1605: the binding for command mode with
                   1606: .Fl c
                   1607: or for normal mode without.
                   1608: To view the default bindings and possible commands, see the
                   1609: .Ic list-keys
                   1610: command.
                   1611: .It Ic list-keys Op Fl t Ar key-table
                   1612: .D1 (alias: Ic lsk )
                   1613: List all key bindings.
                   1614: Without
                   1615: .Fl t
                   1616: the primary key bindings - those executed when preceded by the prefix key -
                   1617: are printed.
                   1618: Keys bound without the prefix key (see
                   1619: .Ic bind-key
                   1620: .Fl n )
1.119     nicm     1621: are marked with
                   1622: .Ql (no prefix) .
1.57      jmc      1623: .Pp
                   1624: With
                   1625: .Fl t ,
                   1626: the key bindings in
                   1627: .Ar key-table
                   1628: are listed; this may be one of:
                   1629: .Em vi-edit ,
                   1630: .Em emacs-edit ,
                   1631: .Em vi-choice ,
                   1632: .Em emacs-choice ,
                   1633: .Em vi-copy
                   1634: or
                   1635: .Em emacs-copy .
                   1636: .It Xo Ic send-keys
1.265     nicm     1637: .Fl R
1.72      nicm     1638: .Op Fl t Ar target-pane
1.57      jmc      1639: .Ar key Ar ...
1.1       nicm     1640: .Xc
1.57      jmc      1641: .D1 (alias: Ic send )
                   1642: Send a key or keys to a window.
                   1643: Each argument
                   1644: .Ar key
                   1645: is the name of the key (such as
                   1646: .Ql C-a
                   1647: or
                   1648: .Ql npage
                   1649: ) to send; if the string is not recognised as a key, it is sent as a series of
                   1650: characters.
                   1651: All arguments are sent sequentially from first to last.
1.265     nicm     1652: The
                   1653: .Fl R
                   1654: flag causes the terminal state to be reset.
1.72      nicm     1655: .It Ic send-prefix Op Fl t Ar target-pane
1.57      jmc      1656: Send the prefix key to a window as if it was pressed.
1.89      nicm     1657: If multiple prefix keys are configured, only the first is sent.
1.57      jmc      1658: .It Xo Ic unbind-key
1.189     nicm     1659: .Op Fl acn
1.57      jmc      1660: .Op Fl t Ar key-table
                   1661: .Ar key
1.2       nicm     1662: .Xc
1.57      jmc      1663: .D1 (alias: Ic unbind )
                   1664: Unbind the command bound to
                   1665: .Ar key .
                   1666: Without
                   1667: .Fl t
                   1668: the primary key bindings are modified; in this case, if
                   1669: .Fl n
                   1670: is specified, the command bound to
                   1671: .Ar key
                   1672: without a prefix (if any) is removed.
1.189     nicm     1673: If
                   1674: .Fl a
                   1675: is present, all key bindings are removed.
1.57      jmc      1676: .Pp
1.47      nicm     1677: If
1.57      jmc      1678: .Fl t
                   1679: is present,
                   1680: .Ar key
                   1681: in
                   1682: .Ar key-table
                   1683: is unbound: the binding for command mode with
                   1684: .Fl c
                   1685: or for normal mode without.
                   1686: .El
                   1687: .Sh OPTIONS
                   1688: The appearance and behaviour of
                   1689: .Nm
                   1690: may be modified by changing the value of various options.
1.133     nicm     1691: There are three types of option:
                   1692: .Em server options ,
1.57      jmc      1693: .Em session options
                   1694: and
                   1695: .Em window options .
                   1696: .Pp
1.133     nicm     1697: The
                   1698: .Nm
                   1699: server has a set of global options which do not apply to any particular
                   1700: window or session.
                   1701: These are altered with the
                   1702: .Ic set-option
                   1703: .Fl s
                   1704: command, or displayed with the
                   1705: .Ic show-options
                   1706: .Fl s
                   1707: command.
                   1708: .Pp
                   1709: In addition, each individual session may have a set of session options, and
                   1710: there is a separate set of global session options.
1.57      jmc      1711: Sessions which do not have a particular option configured inherit the value
                   1712: from the global session options.
                   1713: Session options are set or unset with the
                   1714: .Ic set-option
                   1715: command and may be listed with the
                   1716: .Ic show-options
                   1717: command.
1.133     nicm     1718: The available server and session options are listed under the
1.57      jmc      1719: .Ic set-option
                   1720: command.
                   1721: .Pp
                   1722: Similarly, a set of window options is attached to each window, and there is
                   1723: a set of global window options from which any unset options are inherited.
                   1724: Window options are altered with the
                   1725: .Ic set-window-option
                   1726: command and can be listed with the
                   1727: .Ic show-window-options
                   1728: command.
                   1729: All window options are documented with the
                   1730: .Ic set-window-option
                   1731: command.
                   1732: .Pp
                   1733: Commands which set options are as follows:
                   1734: .Bl -tag -width Ds
1.1       nicm     1735: .It Xo Ic set-option
1.133     nicm     1736: .Op Fl agsuw
1.129     nicm     1737: .Op Fl t Ar target-session | Ar target-window
1.1       nicm     1738: .Ar option Ar value
                   1739: .Xc
                   1740: .D1 (alias: Ic set )
1.133     nicm     1741: Set a window option with
                   1742: .Fl w
                   1743: (equivalent to the
                   1744: .Ic set-window-option
                   1745: command),
                   1746: a server option with
                   1747: .Fl s ,
                   1748: otherwise a session option.
                   1749: .Pp
                   1750: If
                   1751: .Fl g
                   1752: is specified, the global session or window option is set.
1.58      nicm     1753: With
                   1754: .Fl a ,
                   1755: and if the option expects a string,
                   1756: .Ar value
                   1757: is appended to the existing setting.
1.1       nicm     1758: The
                   1759: .Fl u
                   1760: flag unsets an option, so a session inherits the option from the global
1.133     nicm     1761: options.
                   1762: It is not possible to unset a global option.
1.1       nicm     1763: .Pp
1.133     nicm     1764: Available window options are listed under
                   1765: .Ic set-window-option .
                   1766: .Pp
                   1767: Available server options are:
                   1768: .Bl -tag -width Ds
1.198     nicm     1769: .It Ic buffer-limit Ar number
                   1770: Set the number of buffers; as new buffers are added to the top of the stack,
                   1771: old ones are removed from the bottom if necessary to maintain this maximum
                   1772: length.
1.239     nicm     1773: .It Ic escape-time Ar time
                   1774: Set the time in milliseconds for which
                   1775: .Nm
                   1776: waits after an escape is input to determine if it is part of a function or meta
                   1777: key sequences.
                   1778: The default is 500 milliseconds.
                   1779: .It Xo Ic exit-unattached
                   1780: .Op Ic on | off
                   1781: .Xc
                   1782: If enabled, the server will exit when there are no attached clients.
                   1783: .It Xo Ic quiet
                   1784: .Op Ic on | off
                   1785: .Xc
                   1786: Enable or disable the display of various informational messages (see also the
                   1787: .Fl q
                   1788: command line flag).
1.228     nicm     1789: .It Xo Ic set-clipboard
                   1790: .Op Ic on | off
                   1791: .Xc
                   1792: Attempt to set the terminal clipboard content using the
                   1793: \ee]52;...\e007
                   1794: .Xr xterm 1
                   1795: escape sequences.
                   1796: This option is on by default if there is an
                   1797: .Em \&Ms
                   1798: entry in the
                   1799: .Xr terminfo 5
                   1800: description for the client terminal.
                   1801: Note that this feature needs to be enabled in
                   1802: .Xr xterm 1
                   1803: by setting the resource:
                   1804: .Bd -literal -offset indent
                   1805: disallowedWindowOps: 20,21,SetXprop
                   1806: .Ed
                   1807: .Pp
                   1808: Or changing this property from the
                   1809: .Xr xterm 1
                   1810: interactive menu when required.
1.133     nicm     1811: .El
1.129     nicm     1812: .Pp
1.18      nicm     1813: Available session options are:
1.1       nicm     1814: .Bl -tag -width Ds
1.69      nicm     1815: .It Ic base-index Ar index
                   1816: Set the base index from which an unused index should be searched when a new
                   1817: window is created.
                   1818: The default is zero.
1.1       nicm     1819: .It Xo Ic bell-action
1.56      jmc      1820: .Op Ic any | none | current
1.1       nicm     1821: .Xc
                   1822: Set action on window bell.
                   1823: .Ic any
                   1824: means a bell in any window linked to a session causes a bell in the current
                   1825: window of that session,
                   1826: .Ic none
                   1827: means all bells are ignored and
                   1828: .Ic current
                   1829: means only bell in windows other than the current window are ignored.
1.237     nicm     1830: .It Xo Ic bell-on-alert
                   1831: .Op Ic on | off
                   1832: .Xc
                   1833: If on, ring the terminal bell when an activity, content or silence alert
                   1834: occurs.
1.153     nicm     1835: .It Ic default-command Ar shell-command
1.1       nicm     1836: Set the command used for new windows (if not specified when the window is
                   1837: created) to
1.153     nicm     1838: .Ar shell-command ,
1.79      nicm     1839: which may be any
                   1840: .Xr sh 1
                   1841: command.
1.19      nicm     1842: The default is an empty string, which instructs
                   1843: .Nm
1.79      nicm     1844: to create a login shell using the value of the
                   1845: .Ic default-shell
                   1846: option.
1.196     nicm     1847: .It Ic default-path Ar path
1.257     nicm     1848: Set the default working directory for new panes.
                   1849: If empty (the default), the working directory is determined from the process
                   1850: running in the active pane, from the command line environment or from the
                   1851: working directory where the session was created.
1.259     stsp     1852: If
                   1853: .Ar path
                   1854: is "$HOME" or "~", the value of the
                   1855: .Ev HOME
                   1856: environment variable is used.
1.260     sthen    1857: If
                   1858: .Ar path
                   1859: is ".", the working directory when
                   1860: .Nm
                   1861: was started is used.
1.79      nicm     1862: .It Ic default-shell Ar path
                   1863: Specify the default shell.
                   1864: This is used as the login shell for new windows when the
                   1865: .Ic default-command
                   1866: option is set to empty, and must be the full path of the executable.
                   1867: When started
                   1868: .Nm
                   1869: tries to set a default value from the first suitable of the
1.19      nicm     1870: .Ev SHELL
1.79      nicm     1871: environment variable, the shell returned by
                   1872: .Xr getpwuid 3 ,
                   1873: or
                   1874: .Pa /bin/sh .
                   1875: This option should be configured when
                   1876: .Nm
                   1877: is used as a login shell.
1.22      nicm     1878: .It Ic default-terminal Ar terminal
                   1879: Set the default terminal for new windows created in this session - the
                   1880: default value of the
                   1881: .Ev TERM
                   1882: environment variable.
                   1883: For
                   1884: .Nm
                   1885: to work correctly, this
                   1886: .Em must
                   1887: be set to
                   1888: .Ql screen
                   1889: or a derivative of it.
1.206     nicm     1890: .It Xo Ic destroy-unattached
                   1891: .Op Ic on | off
                   1892: .Xc
1.185     nicm     1893: If enabled and the session is no longer attached to any clients, it is
                   1894: destroyed.
1.206     nicm     1895: .It Xo Ic detach-on-destroy
                   1896: .Op Ic on | off
                   1897: .Xc
1.184     nicm     1898: If on (the default), the client is detached when the session it is attached to
                   1899: is destroyed.
                   1900: If off, the client is switched to the most recently active of the remaining
                   1901: sessions.
1.145     nicm     1902: .It Ic display-panes-active-colour Ar colour
                   1903: Set the colour used by the
                   1904: .Ic display-panes
                   1905: command to show the indicator for the active pane.
1.78      nicm     1906: .It Ic display-panes-colour Ar colour
1.145     nicm     1907: Set the colour used by the
1.78      nicm     1908: .Ic display-panes
1.145     nicm     1909: command to show the indicators for inactive panes.
1.78      nicm     1910: .It Ic display-panes-time Ar time
                   1911: Set the time in milliseconds for which the indicators shown by the
                   1912: .Ic display-panes
                   1913: command appear.
1.21      nicm     1914: .It Ic display-time Ar time
1.78      nicm     1915: Set the amount of time for which status line messages and other on-screen
                   1916: indicators are displayed.
1.21      nicm     1917: .Ar time
                   1918: is in milliseconds.
1.1       nicm     1919: .It Ic history-limit Ar lines
                   1920: Set the maximum number of lines held in window history.
                   1921: This setting applies only to new windows - existing window histories are not
                   1922: resized and retain the limit at the point they were created.
                   1923: .It Ic lock-after-time Ar number
1.100     nicm     1924: Lock the session (like the
                   1925: .Ic lock-session
1.90      nicm     1926: command) after
1.1       nicm     1927: .Ar number
1.100     nicm     1928: seconds of inactivity, or the entire server (all sessions) if the
                   1929: .Ic lock-server
                   1930: option is set.
                   1931: The default is not to lock (set to 0).
1.153     nicm     1932: .It Ic lock-command Ar shell-command
1.90      nicm     1933: Command to run when locking each client.
                   1934: The default is to run
                   1935: .Xr lock 1
                   1936: with
                   1937: .Fl np .
1.100     nicm     1938: .It Xo Ic lock-server
                   1939: .Op Ic on | off
                   1940: .Xc
                   1941: If this option is
1.102     nicm     1942: .Ic on
1.100     nicm     1943: (the default),
                   1944: instead of each session locking individually as each has been
                   1945: idle for
1.108     jmc      1946: .Ic lock-after-time ,
                   1947: the entire server will lock after
1.100     nicm     1948: .Em all
                   1949: sessions would have locked.
                   1950: This has no effect as a session option; it must be set as a global option.
1.1       nicm     1951: .It Ic message-attr Ar attributes
                   1952: Set status line message attributes, where
                   1953: .Ar attributes
                   1954: is either
1.168     nicm     1955: .Ic none
1.1       nicm     1956: or a comma-delimited list of one or more of:
                   1957: .Ic bright
                   1958: (or
                   1959: .Ic bold ) ,
                   1960: .Ic dim ,
                   1961: .Ic underscore ,
                   1962: .Ic blink ,
                   1963: .Ic reverse ,
                   1964: .Ic hidden ,
                   1965: or
                   1966: .Ic italics .
                   1967: .It Ic message-bg Ar colour
                   1968: Set status line message background colour, where
                   1969: .Ar colour
                   1970: is one of:
                   1971: .Ic black ,
                   1972: .Ic red ,
                   1973: .Ic green ,
                   1974: .Ic yellow ,
                   1975: .Ic blue ,
                   1976: .Ic magenta ,
                   1977: .Ic cyan ,
1.85      nicm     1978: .Ic white ,
1.266   ! nicm     1979: aixterm bright variants (if supported:
        !          1980: .Ic brightred ,
        !          1981: .Ic brightgreen ,
        !          1982: and so on),
1.85      nicm     1983: .Ic colour0
                   1984: to
                   1985: .Ic colour255
1.205     nicm     1986: from the 256-colour set,
                   1987: .Ic default ,
                   1988: or a hexadecimal RGB string such as
                   1989: .Ql #ffffff ,
                   1990: which chooses the closest match from the default 256-colour set.
1.253     nicm     1991: .It Ic message-command-attr Ar attributes
                   1992: Set status line message attributes when in command mode.
                   1993: .It Ic message-command-bg Ar colour
                   1994: Set status line message background colour when in command mode.
                   1995: .It Ic message-command-fg Ar colour
                   1996: Set status line message foreground colour when in command mode.
1.1       nicm     1997: .It Ic message-fg Ar colour
                   1998: Set status line message foreground colour.
1.120     nicm     1999: .It Ic message-limit Ar number
                   2000: Set the number of error or information messages to save in the message log for
                   2001: each client.
                   2002: The default is 20.
1.226     nicm     2003: .It Xo Ic mouse-resize-pane
                   2004: .Op Ic on | off
                   2005: .Xc
                   2006: If on,
                   2007: .Nm
                   2008: captures the mouse and allows panes to be resized by dragging on their borders.
1.102     nicm     2009: .It Xo Ic mouse-select-pane
                   2010: .Op Ic on | off
                   2011: .Xc
                   2012: If on,
                   2013: .Nm
                   2014: captures the mouse and when a window is split into multiple panes the mouse may
                   2015: be used to select the current pane.
                   2016: The mouse click is also passed through to the application as normal.
1.222     nicm     2017: .It Xo Ic mouse-select-window
                   2018: .Op Ic on | off
                   2019: .Xc
                   2020: If on, clicking the mouse on a window name in the status line will select that
                   2021: window.
1.239     nicm     2022: .It Xo Ic mouse-utf8
                   2023: .Op Ic on | off
                   2024: .Xc
                   2025: If enabled, request mouse input as UTF-8 on UTF-8 terminals.
1.196     nicm     2026: .It Ic pane-active-border-bg Ar colour
                   2027: .It Ic pane-active-border-fg Ar colour
                   2028: Set the pane border colour for the currently active pane.
                   2029: .It Ic pane-border-bg Ar colour
1.135     nicm     2030: .It Ic pane-border-fg Ar colour
                   2031: Set the pane border colour for panes aside from the active pane.
1.89      nicm     2032: .It Ic prefix Ar keys
                   2033: Set the keys accepted as a prefix key.
                   2034: .Ar keys
                   2035: is a comma-separated list of key names, each of which individually behave as
                   2036: the prefix key.
1.21      nicm     2037: .It Ic repeat-time Ar time
1.1       nicm     2038: Allow multiple commands to be entered without pressing the prefix-key again
                   2039: in the specified
1.21      nicm     2040: .Ar time
1.1       nicm     2041: milliseconds (the default is 500).
                   2042: Whether a key repeats may be set when it is bound using the
                   2043: .Fl r
                   2044: flag to
                   2045: .Ic bind-key .
1.52      nicm     2046: Repeat is enabled for the default keys bound to the
                   2047: .Ic resize-pane
                   2048: command.
1.1       nicm     2049: .It Xo Ic set-remain-on-exit
1.56      jmc      2050: .Op Ic on | off
1.1       nicm     2051: .Xc
                   2052: Set the
                   2053: .Ic remain-on-exit
                   2054: window option for any windows first created in this session.
1.153     nicm     2055: When this option is true, windows in which the running program has
                   2056: exited do not close, instead remaining open but inactivate.
                   2057: Use the
                   2058: .Ic respawn-window
                   2059: command to reactivate such a window, or the
                   2060: .Ic kill-window
                   2061: command to destroy it.
1.1       nicm     2062: .It Xo Ic set-titles
1.56      jmc      2063: .Op Ic on | off
1.1       nicm     2064: .Xc
1.261     nicm     2065: Attempt to set the client terminal title using the
                   2066: .Em tsl
                   2067: and
                   2068: .Em fsl
                   2069: .Xr terminfo 5
                   2070: entries if they exist.
                   2071: .Nm
                   2072: automatically sets these to the \ee]2;...\e007 sequence if
1.1       nicm     2073: the terminal appears to be an xterm.
1.11      nicm     2074: This option is off by default.
1.6       jmc      2075: Note that elinks
1.1       nicm     2076: will only attempt to set the window title if the STY environment
                   2077: variable is set.
1.86      nicm     2078: .It Ic set-titles-string Ar string
                   2079: String used to set the window title if
                   2080: .Ic set-titles
                   2081: is on.
                   2082: Character sequences are replaced as for the
                   2083: .Ic status-left
                   2084: option.
1.1       nicm     2085: .It Xo Ic status
1.56      jmc      2086: .Op Ic on | off
1.1       nicm     2087: .Xc
                   2088: Show or hide the status line.
                   2089: .It Ic status-attr Ar attributes
                   2090: Set status line attributes.
                   2091: .It Ic status-bg Ar colour
                   2092: Set status line background colour.
                   2093: .It Ic status-fg Ar colour
                   2094: Set status line foreground colour.
                   2095: .It Ic status-interval Ar interval
                   2096: Update the status bar every
                   2097: .Ar interval
                   2098: seconds.
                   2099: By default, updates will occur every 15 seconds.
                   2100: A setting of zero disables redrawing at interval.
1.41      nicm     2101: .It Xo Ic status-justify
1.56      jmc      2102: .Op Ic left | centre | right
1.41      nicm     2103: .Xc
                   2104: Set the position of the window list component of the status line: left, centre
                   2105: or right justified.
1.1       nicm     2106: .It Xo Ic status-keys
1.56      jmc      2107: .Op Ic vi | emacs
1.1       nicm     2108: .Xc
1.6       jmc      2109: Use vi or emacs-style
1.1       nicm     2110: key bindings in the status line, for example at the command prompt.
1.191     nicm     2111: The default is emacs, unless the
                   2112: .Ev VISUAL
                   2113: or
                   2114: .Ev EDITOR
                   2115: environment variables are set and contain the string
                   2116: .Ql vi .
1.1       nicm     2117: .It Ic status-left Ar string
                   2118: Display
                   2119: .Ar string
                   2120: to the left of the status bar.
                   2121: .Ar string
                   2122: will be passed through
                   2123: .Xr strftime 3
                   2124: before being used.
                   2125: By default, the session name is shown.
                   2126: .Ar string
1.83      nicm     2127: may contain any of the following special character sequences:
1.1       nicm     2128: .Bl -column "Character pair" "Replaced with" -offset indent
                   2129: .It Sy "Character pair" Ta Sy "Replaced with"
1.153     nicm     2130: .It Li "#(shell-command)" Ta "First line of the command's output"
1.83      nicm     2131: .It Li "#[attributes]" Ta "Colour or attribute change"
1.1       nicm     2132: .It Li "#H" Ta "Hostname of local host"
1.224     nicm     2133: .It Li "#h" Ta "Hostname of local host without the domain name"
1.125     nicm     2134: .It Li "#F" Ta "Current window flag"
1.35      nicm     2135: .It Li "#I" Ta "Current window index"
                   2136: .It Li "#P" Ta "Current pane index"
1.1       nicm     2137: .It Li "#S" Ta "Session name"
1.261     nicm     2138: .It Li "#T" Ta "Current pane title"
1.35      nicm     2139: .It Li "#W" Ta "Current window name"
1.1       nicm     2140: .It Li "##" Ta "A literal" Ql #
                   2141: .El
1.83      nicm     2142: .Pp
1.153     nicm     2143: The #(shell-command) form executes
                   2144: .Ql shell-command
                   2145: and inserts the first line of its output.
1.103     nicm     2146: Note that shell commands are only executed once at the interval specified by
                   2147: the
                   2148: .Ic status-interval
                   2149: option: if the status line is redrawn in the meantime, the previous result is
                   2150: used.
1.161     nicm     2151: Shell commands are executed with the
                   2152: .Nm
                   2153: global environment set (see the
1.162     jmc      2154: .Sx ENVIRONMENT
                   2155: section).
1.163     nicm     2156: .Pp
1.263     nicm     2157: For details on how the names and titles can be set see the
1.261     nicm     2158: .Sx "NAMES AND TITLES"
                   2159: section.
1.109     nicm     2160: .Pp
1.83      nicm     2161: #[attributes] allows a comma-separated list of attributes to be specified,
                   2162: these may be
                   2163: .Ql fg=colour
                   2164: to set the foreground colour,
                   2165: .Ql bg=colour
1.131     nicm     2166: to set the background colour, the name of one of the attributes (listed under
                   2167: the
1.83      nicm     2168: .Ic message-attr
1.109     nicm     2169: option) to turn an attribute on, or an attribute prefixed with
                   2170: .Ql no
                   2171: to turn one off, for example
                   2172: .Ic nobright .
1.83      nicm     2173: Examples are:
                   2174: .Bd -literal -offset indent
                   2175: #(sysctl vm.loadavg)
                   2176: #[fg=yellow,bold]#(apm -l)%%#[default] [#S]
                   2177: .Ed
1.1       nicm     2178: .Pp
1.109     nicm     2179: Where appropriate, special character sequences may be prefixed with a number to
                   2180: specify the maximum length, for example
1.1       nicm     2181: .Ql #24T .
1.10      nicm     2182: .Pp
1.12      jmc      2183: By default, UTF-8 in
1.10      nicm     2184: .Ar string
                   2185: is not interpreted, to enable UTF-8, use the
                   2186: .Ic status-utf8
                   2187: option.
1.62      nicm     2188: .It Ic status-left-attr Ar attributes
1.66      jmc      2189: Set the attribute of the left part of the status line.
1.196     nicm     2190: .It Ic status-left-bg Ar colour
                   2191: Set the background colour of the left part of the status line.
1.62      nicm     2192: .It Ic status-left-fg Ar colour
                   2193: Set the foreground colour of the left part of the status line.
1.1       nicm     2194: .It Ic status-left-length Ar length
                   2195: Set the maximum
                   2196: .Ar length
                   2197: of the left component of the status bar.
                   2198: The default is 10.
                   2199: .It Ic status-right Ar string
                   2200: Display
                   2201: .Ar string
                   2202: to the right of the status bar.
1.151     nicm     2203: By default, the current window title in double quotes, the date and the time
                   2204: are shown.
1.1       nicm     2205: As with
                   2206: .Ic status-left ,
                   2207: .Ar string
                   2208: will be passed to
1.10      nicm     2209: .Xr strftime 3 ,
                   2210: character pairs are replaced, and UTF-8 is dependent on the
                   2211: .Ic status-utf8
                   2212: option.
1.62      nicm     2213: .It Ic status-right-attr Ar attributes
1.66      jmc      2214: Set the attribute of the right part of the status line.
1.196     nicm     2215: .It Ic status-right-bg Ar colour
                   2216: Set the background colour of the right part of the status line.
1.62      nicm     2217: .It Ic status-right-fg Ar colour
                   2218: Set the foreground colour of the right part of the status line.
1.1       nicm     2219: .It Ic status-right-length Ar length
                   2220: Set the maximum
                   2221: .Ar length
                   2222: of the right component of the status bar.
                   2223: The default is 40.
1.10      nicm     2224: .It Xo Ic status-utf8
1.56      jmc      2225: .Op Ic on | off
1.10      nicm     2226: .Xc
                   2227: Instruct
                   2228: .Nm
                   2229: to treat top-bit-set characters in the
                   2230: .Ic status-left
                   2231: and
                   2232: .Ic status-right
                   2233: strings as UTF-8; notably, this is important for wide characters.
                   2234: This option defaults to off.
1.55      jmc      2235: .It Ic terminal-overrides Ar string
1.54      nicm     2236: Contains a list of entries which override terminal descriptions read using
                   2237: .Xr terminfo 5 .
                   2238: .Ar string
                   2239: is a comma-separated list of items each a colon-separated string made up of a
                   2240: terminal type pattern (matched using
                   2241: .Xr fnmatch 3 )
                   2242: and a set of
                   2243: .Em name=value
                   2244: entries.
                   2245: .Pp
                   2246: For example, to set the
                   2247: .Ql clear
                   2248: .Xr terminfo 5
                   2249: entry to
                   2250: .Ql \ee[H\ee[2J
                   2251: for all terminal types and the
                   2252: .Ql dch1
                   2253: entry to
                   2254: .Ql \ee[P
1.55      jmc      2255: for the
1.54      nicm     2256: .Ql rxvt
                   2257: terminal type, the option could be set to the string:
                   2258: .Bd -literal -offset indent
                   2259: "*:clear=\ee[H\ee[2J,rxvt:dch1=\ee[P"
                   2260: .Ed
                   2261: .Pp
                   2262: The terminal entry value is passed through
                   2263: .Xr strunvis 3
                   2264: before interpretation.
                   2265: The default value forcibly corrects the
                   2266: .Ql colors
                   2267: entry for terminals which support 88 or 256 colours:
                   2268: .Bd -literal -offset indent
1.225     nicm     2269: "*88col*:colors=88,*256col*:colors=256,xterm*:XT"
1.54      nicm     2270: .Ed
1.63      nicm     2271: .It Ic update-environment Ar variables
                   2272: Set a space-separated string containing a list of environment variables to be
                   2273: copied into the session environment when a new session is created or an
                   2274: existing session is attached.
                   2275: Any variables that do not exist in the source environment are set to be
                   2276: removed from the session environment (as if
                   2277: .Fl r
                   2278: was given to the
                   2279: .Ic set-environment
                   2280: command).
                   2281: The default is
1.190     nicm     2282: "DISPLAY SSH_ASKPASS SSH_AUTH_SOCK SSH_AGENT_PID SSH_CONNECTION WINDOWID
                   2283: XAUTHORITY".
1.37      nicm     2284: .It Xo Ic visual-activity
1.56      jmc      2285: .Op Ic on | off
1.37      nicm     2286: .Xc
                   2287: If on, display a status line message when activity occurs in a window
1.39      jmc      2288: for which the
1.37      nicm     2289: .Ic monitor-activity
                   2290: window option is enabled.
                   2291: .It Xo Ic visual-bell
1.56      jmc      2292: .Op Ic on | off
1.37      nicm     2293: .Xc
                   2294: If this option is on, a message is shown on a bell instead of it being passed
                   2295: through to the terminal (which normally makes a sound).
                   2296: Also see the
                   2297: .Ic bell-action
                   2298: option.
                   2299: .It Xo Ic visual-content
1.56      jmc      2300: .Op Ic on | off
1.37      nicm     2301: .Xc
                   2302: Like
                   2303: .Ic visual-activity ,
                   2304: display a message when content is present in a window
1.39      jmc      2305: for which the
1.37      nicm     2306: .Ic monitor-content
                   2307: window option is enabled.
1.192     nicm     2308: .It Xo Ic visual-silence
                   2309: .Op Ic on | off
                   2310: .Xc
                   2311: If
                   2312: .Ic monitor-silence
                   2313: is enabled, prints a message after the interval has expired on a given window.
1.255     nicm     2314: .It Ic word-separators Ar string
                   2315: Sets the session's conception of what characters are considered word
                   2316: separators, for the purposes of the next and previous word commands in
                   2317: copy mode.
                   2318: The default is
                   2319: .Ql \ -_@ .
1.1       nicm     2320: .El
                   2321: .It Xo Ic set-window-option
1.58      nicm     2322: .Op Fl agu
1.1       nicm     2323: .Op Fl t Ar target-window
                   2324: .Ar option Ar value
                   2325: .Xc
                   2326: .D1 (alias: Ic setw )
1.18      nicm     2327: Set a window option.
1.1       nicm     2328: The
1.58      nicm     2329: .Fl a ,
1.1       nicm     2330: .Fl g
                   2331: and
                   2332: .Fl u
                   2333: flags work similarly to the
                   2334: .Ic set-option
                   2335: command.
                   2336: .Pp
1.18      nicm     2337: Supported window options are:
1.56      jmc      2338: .Pp
                   2339: .Bl -tag -width Ds -compact
1.1       nicm     2340: .It Xo Ic aggressive-resize
1.56      jmc      2341: .Op Ic on | off
1.1       nicm     2342: .Xc
                   2343: Aggressively resize the chosen window.
                   2344: This means that
                   2345: .Nm
                   2346: will resize the window to the size of the smallest session for which it is the
                   2347: current window, rather than the smallest session to which it is attached.
                   2348: The window may resize when the current window is changed on another sessions;
1.6       jmc      2349: this option is good for full-screen programs which support
                   2350: .Dv SIGWINCH
                   2351: and poor for interactive programs such as shells.
1.262     nicm     2352: .Pp
                   2353: .It Xo Ic allow-rename
                   2354: .Op Ic on | off
                   2355: .Xc
                   2356: Allow programs to change the window name using a terminal escape
                   2357: sequence (\\033k...\\033\\\\).
                   2358: The default is on.
1.56      jmc      2359: .Pp
1.196     nicm     2360: .It Xo Ic alternate-screen
                   2361: .Op Ic on | off
                   2362: .Xc
                   2363: This option configures whether programs running inside
                   2364: .Nm
                   2365: may use the terminal alternate screen feature, which allows the
                   2366: .Em smcup
                   2367: and
                   2368: .Em rmcup
                   2369: .Xr terminfo 5
1.209     nicm     2370: capabilities.
                   2371: The alternate screen feature preserves the contents of the window when an
                   2372: interactive application starts and restores it on exit, so that any output
                   2373: visible before the application starts reappears unchanged after it exits.
                   2374: The default is on.
1.196     nicm     2375: .Pp
1.1       nicm     2376: .It Xo Ic automatic-rename
1.56      jmc      2377: .Op Ic on | off
1.1       nicm     2378: .Xc
                   2379: Control automatic window renaming.
                   2380: When this setting is enabled,
                   2381: .Nm
                   2382: will attempt - on supported platforms - to rename the window to reflect the
                   2383: command currently running in it.
                   2384: This flag is automatically disabled for an individual window when a name
                   2385: is specified at creation with
1.186     nicm     2386: .Ic new-window
                   2387: or
1.1       nicm     2388: .Ic new-session ,
                   2389: or later with
1.261     nicm     2390: .Ic rename-window ,
                   2391: or with a terminal escape sequence.
1.1       nicm     2392: It may be switched off globally with:
                   2393: .Bd -literal -offset indent
                   2394: set-window-option -g automatic-rename off
                   2395: .Ed
1.56      jmc      2396: .Pp
1.1       nicm     2397: .It Ic clock-mode-colour Ar colour
                   2398: Set clock colour.
1.56      jmc      2399: .Pp
1.1       nicm     2400: .It Xo Ic clock-mode-style
1.56      jmc      2401: .Op Ic 12 | 24
1.1       nicm     2402: .Xc
                   2403: Set clock hour format.
1.56      jmc      2404: .Pp
1.1       nicm     2405: .It Ic force-height Ar height
                   2406: .It Ic force-width Ar width
                   2407: Prevent
                   2408: .Nm
                   2409: from resizing a window to greater than
                   2410: .Ar width
                   2411: or
                   2412: .Ar height .
                   2413: A value of zero restores the default unlimited setting.
1.56      jmc      2414: .Pp
1.196     nicm     2415: .It Ic main-pane-height Ar height
1.2       nicm     2416: .It Ic main-pane-width Ar width
                   2417: Set the width or height of the main (left or top) pane in the
                   2418: .Ic main-horizontal
                   2419: or
                   2420: .Ic main-vertical
                   2421: layouts.
1.56      jmc      2422: .Pp
1.1       nicm     2423: .It Ic mode-attr Ar attributes
                   2424: Set window modes attributes.
1.56      jmc      2425: .Pp
1.1       nicm     2426: .It Ic mode-bg Ar colour
                   2427: Set window modes background colour.
1.56      jmc      2428: .Pp
1.1       nicm     2429: .It Ic mode-fg Ar colour
                   2430: Set window modes foreground colour.
1.56      jmc      2431: .Pp
1.1       nicm     2432: .It Xo Ic mode-keys
1.56      jmc      2433: .Op Ic vi | emacs
1.1       nicm     2434: .Xc
1.105     nicm     2435: Use vi or emacs-style key bindings in copy and choice modes.
1.191     nicm     2436: As with the
                   2437: .Ic status-keys
                   2438: option, the default is emacs, unless
                   2439: .Ev VISUAL
                   2440: or
                   2441: .Ev EDITOR
                   2442: contains
                   2443: .Ql vi .
1.56      jmc      2444: .Pp
1.50      nicm     2445: .It Xo Ic mode-mouse
1.240     nicm     2446: .Op Ic on | off | copy-mode
1.50      nicm     2447: .Xc
1.51      jmc      2448: Mouse state in modes.
1.223     nicm     2449: If on, the mouse may be used to enter copy mode and copy a selection by
                   2450: dragging, to enter copy mode and scroll with the mouse wheel, or to select an
                   2451: option in choice mode.
1.240     nicm     2452: If set to
1.241     jmc      2453: .Em copy-mode ,
1.240     nicm     2454: the mouse behaves as set to on, but cannot be used to enter copy
                   2455: mode.
1.56      jmc      2456: .Pp
1.1       nicm     2457: .It Xo Ic monitor-activity
1.56      jmc      2458: .Op Ic on | off
1.1       nicm     2459: .Xc
                   2460: Monitor for activity in the window.
                   2461: Windows with activity are highlighted in the status line.
1.56      jmc      2462: .Pp
                   2463: .It Ic monitor-content Ar match-string
1.6       jmc      2464: Monitor content in the window.
                   2465: When
1.16      nicm     2466: .Xr fnmatch 3
                   2467: pattern
1.1       nicm     2468: .Ar match-string
                   2469: appears in the window, it is highlighted in the status line.
1.56      jmc      2470: .Pp
1.192     nicm     2471: .It Xo Ic monitor-silence
                   2472: .Op Ic interval
                   2473: .Xc
                   2474: Monitor for silence (no activity) in the window within
                   2475: .Ic interval
                   2476: seconds.
                   2477: Windows that have been silent for the interval are highlighted in the
                   2478: status line.
                   2479: An interval of zero disables the monitoring.
1.195     nicm     2480: .Pp
                   2481: .It Ic other-pane-height Ar height
                   2482: Set the height of the other panes (not the main pane) in the
                   2483: .Ic main-horizontal
                   2484: layout.
                   2485: If this option is set to 0 (the default), it will have no effect.
                   2486: If both the
                   2487: .Ic main-pane-height
                   2488: and
                   2489: .Ic other-pane-height
                   2490: options are set, the main pane will grow taller to make the other panes the
                   2491: specified height, but will never shrink to do so.
                   2492: .Pp
                   2493: .It Ic other-pane-width Ar width
                   2494: Like
                   2495: .Ic other-pane-height ,
                   2496: but set the width of other panes in the
                   2497: .Ic main-vertical
                   2498: layout.
1.243     nicm     2499: .Pp
                   2500: .It Ic pane-base-index Ar index
                   2501: Like
                   2502: .Ic base-index ,
                   2503: but set the starting index for pane numbers.
1.192     nicm     2504: .Pp
1.1       nicm     2505: .It Xo Ic remain-on-exit
1.56      jmc      2506: .Op Ic on | off
1.1       nicm     2507: .Xc
                   2508: A window with this flag set is not destroyed when the program running in it
                   2509: exits.
                   2510: The window may be reactivated with the
                   2511: .Ic respawn-window
                   2512: command.
1.56      jmc      2513: .Pp
1.99      nicm     2514: .It Xo Ic synchronize-panes
                   2515: .Op Ic on | off
                   2516: .Xc
1.164     nicm     2517: Duplicate input to any pane to all other panes in the same window (only
                   2518: for panes that are not in any special mode).
1.139     nicm     2519: .Pp
1.1       nicm     2520: .It Xo Ic utf8
1.56      jmc      2521: .Op Ic on | off
1.1       nicm     2522: .Xc
                   2523: Instructs
                   2524: .Nm
                   2525: to expect UTF-8 sequences to appear in this window.
1.56      jmc      2526: .Pp
1.264     nicm     2527: .It Ic window-status-bell-attr Ar attributes
                   2528: Set status line attributes for windows which have a bell alert.
1.169     nicm     2529: .Pp
1.264     nicm     2530: .It Ic window-status-bell-bg Ar colour
                   2531: Set status line background colour for windows with a bell alert.
1.169     nicm     2532: .Pp
1.264     nicm     2533: .It Ic window-status-bell-fg Ar colour
                   2534: Set status line foreground colour for windows with a bell alert.
                   2535: .Pp
                   2536: .It Ic window-status-content-attr Ar attributes
                   2537: Set status line attributes for windows which have a content alert.
                   2538: .Pp
                   2539: .It Ic window-status-content-bg Ar colour
                   2540: Set status line background colour for windows with a content alert.
                   2541: .Pp
                   2542: .It Ic window-status-content-fg Ar colour
                   2543: Set status line foreground colour for windows with a content alert.
                   2544: .Pp
                   2545: .It Ic window-status-activity-attr Ar attributes
                   2546: Set status line attributes for windows which have an activity (or silence) alert.
                   2547: .Pp
                   2548: .It Ic window-status-activity-bg Ar colour
                   2549: Set status line background colour for windows with an activity alert.
                   2550: .Pp
                   2551: .It Ic window-status-activity-fg Ar colour
                   2552: Set status line foreground colour for windows with an activity alert.
1.125     nicm     2553: .Pp
1.239     nicm     2554: .It Ic window-status-attr Ar attributes
                   2555: Set status line attributes for a single window.
                   2556: .Pp
                   2557: .It Ic window-status-bg Ar colour
                   2558: Set status line background colour for a single window.
                   2559: .Pp
1.40      nicm     2560: .It Ic window-status-current-attr Ar attributes
                   2561: Set status line attributes for the currently active window.
1.56      jmc      2562: .Pp
1.40      nicm     2563: .It Ic window-status-current-bg Ar colour
                   2564: Set status line background colour for the currently active window.
1.56      jmc      2565: .Pp
1.40      nicm     2566: .It Ic window-status-current-fg Ar colour
                   2567: Set status line foreground colour for the currently active window.
1.56      jmc      2568: .Pp
1.125     nicm     2569: .It Ic window-status-current-format Ar string
                   2570: Like
                   2571: .Ar window-status-format ,
                   2572: but is the format used when the window is the current window.
1.239     nicm     2573: .Pp
                   2574: .It Ic window-status-fg Ar colour
                   2575: Set status line foreground colour for a single window.
                   2576: .Pp
                   2577: .It Ic window-status-format Ar string
                   2578: Set the format in which the window is displayed in the status line window list.
                   2579: See the
                   2580: .Ar status-left
                   2581: option for details of special character sequences available.
                   2582: The default is
                   2583: .Ql #I:#W#F .
1.125     nicm     2584: .Pp
1.1       nicm     2585: .It Xo Ic xterm-keys
1.56      jmc      2586: .Op Ic on | off
1.1       nicm     2587: .Xc
                   2588: If this option is set,
                   2589: .Nm
                   2590: will generate
1.57      jmc      2591: .Xr xterm 1 -style
                   2592: function key sequences; these have a number included to indicate modifiers such
                   2593: as Shift, Alt or Ctrl.
1.123     nicm     2594: The default is off.
1.57      jmc      2595: .El
                   2596: .It Xo Ic show-options
1.133     nicm     2597: .Op Fl gsw
1.129     nicm     2598: .Op Fl t Ar target-session | Ar target-window
1.57      jmc      2599: .Xc
                   2600: .D1 (alias: Ic show )
1.133     nicm     2601: Show the window options with
1.129     nicm     2602: .Fl w
1.133     nicm     2603: (equivalent to
1.134     nicm     2604: .Ic show-window-options ) ,
1.133     nicm     2605: the server options with
                   2606: .Fl s ,
                   2607: otherwise the session options for
                   2608: .Ar target session .
                   2609: Global session or window options are listed if
                   2610: .Fl g
                   2611: is used.
1.57      jmc      2612: .It Xo Ic show-window-options
                   2613: .Op Fl g
                   2614: .Op Fl t Ar target-window
                   2615: .Xc
                   2616: .D1 (alias: Ic showw )
                   2617: List the window options for
                   2618: .Ar target-window ,
                   2619: or the global window options if
                   2620: .Fl g
                   2621: is used.
1.63      nicm     2622: .El
1.245     nicm     2623: .Sh FORMATS
                   2624: The
1.250     nicm     2625: .Ic list-clients ,
1.245     nicm     2626: .Ic list-sessions ,
                   2627: .Ic list-windows
                   2628: and
                   2629: .Ic list-panes
                   2630: commands accept the
                   2631: .Fl F
                   2632: flag with a
                   2633: .Ar format
                   2634: argument.
                   2635: This is a string which controls the output format of the command.
                   2636: Special character sequences are replaced as documented under the
                   2637: .Ic status-left
                   2638: option and an additional long form is accepted.
                   2639: Replacement variables are enclosed in
                   2640: .Ql #{
                   2641: and
                   2642: .Ql } ,
                   2643: for example
                   2644: .Ql #{session_name}
                   2645: is equivalent to
                   2646: .Ql #S .
                   2647: Conditionals are also accepted by prefixing with
1.246     jmc      2648: .Ql \&?
1.245     nicm     2649: and separating two alternatives with a comma;
                   2650: if the specified variable exists and is not zero, the first alternative
1.246     jmc      2651: is chosen, otherwise the second is used.
                   2652: For example
1.245     nicm     2653: .Ql #{?session_attached,attached,not attached}
                   2654: will include the string
                   2655: .Ql attached
                   2656: if the session is attached and the string
                   2657: .Ql not attached
                   2658: if it is unattached.
                   2659: .Pp
                   2660: The following variables are available, where appropriate:
                   2661: .Bl -column "session_created_string" "Replaced with" -offset indent
                   2662: .It Sy "Variable name" Ta Sy "Replaced with"
1.250     nicm     2663: .It Li "client_activity" Ta "Integer time client last had activity"
                   2664: .It Li "client_activity_string" Ta "String time client last had activity"
                   2665: .It Li "client_created" Ta "Integer time client created"
                   2666: .It Li "client_created_string" Ta "String time client created"
                   2667: .It Li "client_cwd" Ta "Working directory of client"
                   2668: .It Li "client_height" Ta "Height of client"
                   2669: .It Li "client_readonly" Ta "1 if client is readonly"
                   2670: .It Li "client_termname" Ta "Terminal name of client"
                   2671: .It Li "client_tty" Ta "Pseudo terminal of client"
                   2672: .It Li "client_utf8" Ta "1 if client supports utf8"
                   2673: .It Li "client_width" Ta "Width of client"
1.245     nicm     2674: .It Li "host" Ta "Hostname of local host"
                   2675: .It Li "line" Ta "Line number in the list"
                   2676: .It Li "pane_active" Ta "1 if active pane"
                   2677: .It Li "pane_dead" Ta "1 if pane is dead"
                   2678: .It Li "pane_height" Ta "Height of pane"
                   2679: .It Li "pane_id" Ta "Unique pane id"
1.249     nicm     2680: .It Li "pane_pid" Ta "PID of first process in pane"
                   2681: .It Li "pane_start_command" Ta "Command pane started with"
                   2682: .It Li "pane_start_path" Ta "Path pane started with"
1.245     nicm     2683: .It Li "pane_title" Ta "Title of pane"
1.249     nicm     2684: .It Li "pane_tty" Ta "Pseudo terminal of pane"
1.245     nicm     2685: .It Li "pane_width" Ta "Width of pane"
                   2686: .It Li "session_attached" Ta "1 if session attached"
                   2687: .It Li "session_created" Ta "Integer time session created"
                   2688: .It Li "session_created_string" Ta "String time session created"
                   2689: .It Li "session_group" Ta "Number of session group"
                   2690: .It Li "session_grouped" Ta "1 if session in a group"
                   2691: .It Li "session_height" Ta "Height of session"
                   2692: .It Li "session_name" Ta "Name of session"
                   2693: .It Li "session_width" Ta "Width of session"
                   2694: .It Li "session_windows" Ta "Number of windows in session"
                   2695: .It Li "window_active" Ta "1 if window active"
                   2696: .It Li "window_flags" Ta "Window flags"
                   2697: .It Li "window_height" Ta "Height of window"
                   2698: .It Li "window_index" Ta "Index of window"
                   2699: .It Li "window_layout" Ta "Window layout description"
                   2700: .It Li "window_name" Ta "Name of window"
                   2701: .It Li "window_width" Ta "Width of window"
                   2702: .El
1.261     nicm     2703: .Sh NAMES AND TITLES
                   2704: .Nm
                   2705: distinguishes between names and titles.
                   2706: Windows and sessions have names, which may be used to specify them in targets
                   2707: and are displayed in the status line and various lists: the name is the
                   2708: .Nm
                   2709: identifier for a window or session.
                   2710: Only panes have titles.
                   2711: A pane's title is typically set by the program running inside the pane and
                   2712: is not modified by
                   2713: .Nm .
                   2714: It is the same mechanism used to set for example the
                   2715: .Xr xterm 1
                   2716: window title in an
                   2717: .Xr X 7
                   2718: window manager.
                   2719: Windows themselves do not have titles - a window's title is the title of it's
                   2720: active pane.
                   2721: .Nm
                   2722: itself may set the title of the terminal in which the client is running, see
                   2723: the
                   2724: .Ic set-titles
                   2725: option.
                   2726: .Pp
                   2727: A session's name is set with the
                   2728: .Ic new-session
                   2729: and
                   2730: .Ic rename-session
                   2731: commands.
                   2732: A window's name is set with one of:
                   2733: .Bl -enum -width Ds
                   2734: .It
                   2735: A command argument (such as
                   2736: .Fl n
                   2737: for
                   2738: .Ic new-window
                   2739: or
                   2740: .Ic new-session ) .
                   2741: .It
                   2742: An escape sequence:
                   2743: .Bd -literal -offset indent
                   2744: $ printf '\e033kWINDOW_NAME\e033\e\e'
                   2745: .Ed
                   2746: .It
                   2747: Automatic renaming, which sets the name to the active command in the window's
                   2748: active pane.
                   2749: See the
                   2750: .Ic automatic-rename
                   2751: option.
                   2752: .El
                   2753: .Pp
                   2754: When a pane is first created, its title is the hostname.
                   2755: A pane's title can be set via the OSC title setting sequence, for example:
                   2756: .Bd -literal -offset indent
                   2757: $ printf '\e033]2;My Title\e033\e\e'
                   2758: .Ed
1.63      nicm     2759: .Sh ENVIRONMENT
                   2760: When the server is started,
                   2761: .Nm
                   2762: copies the environment into the
                   2763: .Em global environment ;
                   2764: in addition, each session has a
                   2765: .Em session environment .
1.193     nicm     2766: When a window is created, the session and global environments are merged.
                   2767: If a variable exists in both, the value from the session environment is used.
                   2768: The result is the initial environment passed to the new process.
1.63      nicm     2769: .Pp
                   2770: The
                   2771: .Ic update-environment
                   2772: session option may be used to update the session environment from the client
                   2773: when a new session is created or an old reattached.
                   2774: .Nm
                   2775: also initialises the
                   2776: .Ev TMUX
                   2777: variable with some internal information to allow commands to be executed
                   2778: from inside, and the
                   2779: .Ev TERM
                   2780: variable with the correct terminal setting of
                   2781: .Ql screen .
                   2782: .Pp
                   2783: Commands to alter and view the environment are:
                   2784: .Bl -tag -width Ds
                   2785: .It Xo Ic set-environment
                   2786: .Op Fl gru
                   2787: .Op Fl t Ar target-session
                   2788: .Ar name Op Ar value
                   2789: .Xc
1.115     nicm     2790: .D1 (alias: Ic setenv )
1.63      nicm     2791: Set or unset an environment variable.
                   2792: If
                   2793: .Fl g
                   2794: is used, the change is made in the global environment; otherwise, it is applied
                   2795: to the session environment for
                   2796: .Ar target-session .
                   2797: The
                   2798: .Fl u
                   2799: flag unsets a variable.
                   2800: .Fl r
                   2801: indicates the variable is to be removed from the environment before starting a
                   2802: new process.
                   2803: .It Xo Ic show-environment
                   2804: .Op Fl g
                   2805: .Op Fl t Ar target-session
                   2806: .Xc
1.115     nicm     2807: .D1 (alias: Ic showenv )
1.63      nicm     2808: Display the environment for
                   2809: .Ar target-session
                   2810: or the global environment with
                   2811: .Fl g .
                   2812: Variables removed from the environment are prefixed with
                   2813: .Ql - .
1.57      jmc      2814: .El
                   2815: .Sh STATUS LINE
                   2816: .Nm
                   2817: includes an optional status line which is displayed in the bottom line of each
                   2818: terminal.
                   2819: By default, the status line is enabled (it may be disabled with the
                   2820: .Ic status
                   2821: session option) and contains, from left-to-right: the name of the current
1.261     nicm     2822: session in square brackets; the window list; the title of the active pane
                   2823: in double quotes; and the time and date.
1.57      jmc      2824: .Pp
                   2825: The status line is made of three parts: configurable left and right sections
                   2826: (which may contain dynamic content such as the time or output from a shell
                   2827: command, see the
                   2828: .Ic status-left ,
                   2829: .Ic status-left-length ,
                   2830: .Ic status-right ,
                   2831: and
                   2832: .Ic status-right-length
                   2833: options below), and a central window list.
1.125     nicm     2834: By default, the window list shows the index, name and (if any) flag of the
                   2835: windows present in the current session in ascending numerical order.
                   2836: It may be customised with the
                   2837: .Ar window-status-format
                   2838: and
                   2839: .Ar window-status-current-format
                   2840: options.
1.57      jmc      2841: The flag is one of the following symbols appended to the window name:
                   2842: .Bl -column "Symbol" "Meaning" -offset indent
                   2843: .It Sy "Symbol" Ta Sy "Meaning"
                   2844: .It Li "*" Ta "Denotes the current window."
                   2845: .It Li "-" Ta "Marks the last window (previously selected)."
                   2846: .It Li "#" Ta "Window is monitored and activity has been detected."
                   2847: .It Li "!" Ta "A bell has occurred in the window."
                   2848: .It Li "+" Ta "Window is monitored for content and it has appeared."
1.192     nicm     2849: .It Li "~" Ta "The window has been silent for the monitor-silence interval."
1.57      jmc      2850: .El
                   2851: .Pp
                   2852: The # symbol relates to the
                   2853: .Ic monitor-activity
                   2854: and + to the
                   2855: .Ic monitor-content
                   2856: window options.
                   2857: The window name is printed in inverted colours if an alert (bell, activity or
                   2858: content) is present.
                   2859: .Pp
1.131     nicm     2860: The colour and attributes of the status line may be configured, the entire
                   2861: status line using the
1.57      jmc      2862: .Ic status-attr ,
                   2863: .Ic status-fg
                   2864: and
                   2865: .Ic status-bg
                   2866: session options and individual windows using the
                   2867: .Ic window-status-attr ,
                   2868: .Ic window-status-fg
                   2869: and
                   2870: .Ic window-status-bg
                   2871: window options.
                   2872: .Pp
1.131     nicm     2873: The status line is automatically refreshed at interval if it has changed, the
                   2874: interval may be controlled with the
1.57      jmc      2875: .Ic status-interval
                   2876: session option.
                   2877: .Pp
                   2878: Commands related to the status line are as follows:
                   2879: .Bl -tag -width Ds
                   2880: .It Xo Ic command-prompt
1.235     nicm     2881: .Op Fl I Ar inputs
1.73      nicm     2882: .Op Fl p Ar prompts
1.57      jmc      2883: .Op Fl t Ar target-client
                   2884: .Op Ar template
                   2885: .Xc
                   2886: Open the command prompt in a client.
                   2887: This may be used from inside
                   2888: .Nm
                   2889: to execute commands interactively.
1.231     nicm     2890: .Pp
1.57      jmc      2891: If
                   2892: .Ar template
1.73      nicm     2893: is specified, it is used as the command.
1.235     nicm     2894: If present,
                   2895: .Fl I
                   2896: is a comma-separated list of the initial text for each prompt.
1.73      nicm     2897: If
                   2898: .Fl p
                   2899: is given,
                   2900: .Ar prompts
                   2901: is a comma-separated list of prompts which are displayed in order; otherwise
                   2902: a single prompt is displayed, constructed from
                   2903: .Ar template
                   2904: if it is present, or
                   2905: .Ql \&:
                   2906: if not.
1.235     nicm     2907: .Pp
                   2908: Both
                   2909: .Ar inputs
                   2910: and
1.231     nicm     2911: .Ar prompts
                   2912: may contain the special character sequences supported by the
                   2913: .Ic status-left
                   2914: option.
                   2915: .Pp
1.73      nicm     2916: Before the command is executed, the first occurrence of the string
                   2917: .Ql %%
1.74      jmc      2918: and all occurrences of
1.73      nicm     2919: .Ql %1
                   2920: are replaced by the response to the first prompt, the second
                   2921: .Ql %%
                   2922: and all
                   2923: .Ql %2
                   2924: are replaced with the response to the second prompt, and so on for further
1.74      jmc      2925: prompts.
                   2926: Up to nine prompt responses may be replaced
                   2927: .Po
                   2928: .Ql %1
1.73      nicm     2929: to
1.74      jmc      2930: .Ql %9
                   2931: .Pc .
1.57      jmc      2932: .It Xo Ic confirm-before
1.238     nicm     2933: .Op Fl p Ar prompt
1.57      jmc      2934: .Op Fl t Ar target-client
                   2935: .Ar command
                   2936: .Xc
                   2937: .D1 (alias: Ic confirm )
                   2938: Ask for confirmation before executing
                   2939: .Ar command .
1.238     nicm     2940: If
                   2941: .Fl p
                   2942: is given,
                   2943: .Ar prompt
                   2944: is the prompt to display; otherwise a prompt is constructed from
                   2945: .Ar command .
                   2946: It may contain the special character sequences supported by the
                   2947: .Ic status-left
                   2948: option.
                   2949: .Pp
1.57      jmc      2950: This command works only from inside
                   2951: .Nm .
                   2952: .It Xo Ic display-message
1.127     nicm     2953: .Op Fl p
1.215     nicm     2954: .Op Fl c Ar target-client
                   2955: .Op Fl t Ar target-pane
1.57      jmc      2956: .Op Ar message
                   2957: .Xc
                   2958: .D1 (alias: Ic display )
1.127     nicm     2959: Display a message.
                   2960: If
                   2961: .Fl p
                   2962: is given, the output is printed to stdout, otherwise it is displayed in the
                   2963: .Ar target-client
                   2964: status line.
1.122     nicm     2965: The format of
1.124     jmc      2966: .Ar message
                   2967: is as for
1.122     nicm     2968: .Ic status-left ,
1.215     nicm     2969: with the exception that #() are not handled; information is taken from
                   2970: .Ar target-pane
                   2971: if
                   2972: .Fl t
                   2973: is given, otherwise the active pane for the session attached to
                   2974: .Ar target-client .
1.57      jmc      2975: .El
                   2976: .Sh BUFFERS
                   2977: .Nm
                   2978: maintains a stack of
1.199     nicm     2979: .Em paste buffers .
1.57      jmc      2980: Up to the value of the
                   2981: .Ic buffer-limit
                   2982: option are kept; when a new buffer is added, the buffer at the bottom of the
                   2983: stack is removed.
                   2984: Buffers may be added using
                   2985: .Ic copy-mode
                   2986: or the
                   2987: .Ic set-buffer
                   2988: command, and pasted into a window using the
                   2989: .Ic paste-buffer
                   2990: command.
                   2991: .Pp
                   2992: A configurable history buffer is also maintained for each window.
                   2993: By default, up to 2000 lines are kept; this can be altered with the
                   2994: .Ic history-limit
                   2995: option (see the
                   2996: .Ic set-option
                   2997: command above).
                   2998: .Pp
                   2999: The buffer commands are as follows:
                   3000: .Bl -tag -width Ds
1.178     nicm     3001: .It Xo
                   3002: .Ic choose-buffer
                   3003: .Op Fl t Ar target-window
                   3004: .Op Ar template
                   3005: .Xc
                   3006: Put a window into buffer choice mode, where a buffer may be chosen
                   3007: interactively from a list.
                   3008: After a buffer is selected,
                   3009: .Ql %%
                   3010: is replaced by the buffer index in
                   3011: .Ar template
                   3012: and the result executed as a command.
                   3013: If
                   3014: .Ar template
                   3015: is not given, "paste-buffer -b '%%'" is used.
                   3016: This command works only from inside
                   3017: .Nm .
1.57      jmc      3018: .It Ic clear-history Op Fl t Ar target-pane
                   3019: .D1 (alias: Ic clearhist )
                   3020: Remove and free the history for the specified pane.
1.198     nicm     3021: .It Ic delete-buffer Op Fl b Ar buffer-index
1.57      jmc      3022: .D1 (alias: Ic deleteb )
                   3023: Delete the buffer at
                   3024: .Ar buffer-index ,
                   3025: or the top buffer if not specified.
1.198     nicm     3026: .It Ic list-buffers
1.57      jmc      3027: .D1 (alias: Ic lsb )
1.198     nicm     3028: List the global buffers.
1.200     jmc      3029: .It Xo Ic load-buffer
1.57      jmc      3030: .Op Fl b Ar buffer-index
                   3031: .Ar path
                   3032: .Xc
                   3033: .D1 (alias: Ic loadb )
                   3034: Load the contents of the specified paste buffer from
                   3035: .Ar path .
                   3036: .It Xo Ic paste-buffer
                   3037: .Op Fl dr
                   3038: .Op Fl b Ar buffer-index
1.170     nicm     3039: .Op Fl s Ar separator
1.158     nicm     3040: .Op Fl t Ar target-pane
1.57      jmc      3041: .Xc
                   3042: .D1 (alias: Ic pasteb )
1.158     nicm     3043: Insert the contents of a paste buffer into the specified pane.
                   3044: If not specified, paste into the current one.
1.57      jmc      3045: With
                   3046: .Fl d ,
                   3047: also delete the paste buffer from the stack.
                   3048: When output, any linefeed (LF) characters in the paste buffer are replaced with
1.170     nicm     3049: a separator, by default carriage return (CR).
                   3050: A custom separator may be specified using the
                   3051: .Fl s
                   3052: flag.
                   3053: The
1.57      jmc      3054: .Fl r
1.170     nicm     3055: flag means to do no replacement (equivalent to a separator of LF).
1.57      jmc      3056: .It Xo Ic save-buffer
                   3057: .Op Fl a
                   3058: .Op Fl b Ar buffer-index
                   3059: .Ar path
                   3060: .Xc
                   3061: .D1 (alias: Ic saveb )
                   3062: Save the contents of the specified paste buffer to
                   3063: .Ar path .
                   3064: The
                   3065: .Fl a
                   3066: option appends to rather than overwriting the file.
                   3067: .It Xo Ic set-buffer
                   3068: .Op Fl b Ar buffer-index
                   3069: .Ar data
                   3070: .Xc
                   3071: .D1 (alias: Ic setb )
                   3072: Set the contents of the specified buffer to
                   3073: .Ar data .
1.1       nicm     3074: .It Xo Ic show-buffer
                   3075: .Op Fl b Ar buffer-index
                   3076: .Xc
                   3077: .D1 (alias: Ic showb )
                   3078: Display the contents of the specified buffer.
1.57      jmc      3079: .El
                   3080: .Sh MISCELLANEOUS
                   3081: Miscellaneous commands are as follows:
                   3082: .Bl -tag -width Ds
1.72      nicm     3083: .It Ic clock-mode Op Fl t Ar target-pane
1.57      jmc      3084: Display a large clock.
1.251     nicm     3085: .It Ic if-shell Ar shell-command command Op Ar command
1.57      jmc      3086: .D1 (alias: Ic if )
1.251     nicm     3087: Execute the first
1.57      jmc      3088: .Ar command
                   3089: if
                   3090: .Ar shell-command
1.251     nicm     3091: returns success or the second
                   3092: .Ar command
                   3093: otherwise.
1.57      jmc      3094: .It Ic lock-server
                   3095: .D1 (alias: Ic lock )
1.90      nicm     3096: Lock each client individually by running the command specified by the
                   3097: .Ic lock-command
                   3098: option.
1.153     nicm     3099: .It Ic run-shell Ar shell-command
1.87      nicm     3100: .D1 (alias: Ic run )
                   3101: Execute
1.153     nicm     3102: .Ar shell-command
1.106     nicm     3103: in the background without creating a window.
1.164     nicm     3104: After it finishes, any output to stdout is displayed in copy mode.
1.153     nicm     3105: If the command doesn't return success, the exit status is also displayed.
1.57      jmc      3106: .It Ic server-info
                   3107: .D1 (alias: Ic info )
                   3108: Show server information and terminal details.
1.228     nicm     3109: .El
                   3110: .Sh TERMINFO EXTENSIONS
                   3111: .Nm
                   3112: understands some extensions to
                   3113: .Xr terminfo 5 :
                   3114: .Bl -tag -width Ds
1.232     jmc      3115: .It Em Cc , Cr
1.233     nicm     3116: Set the cursor colour.
1.232     jmc      3117: The first takes a single string argument and is used to set the colour;
                   3118: the second takes no arguments and restores the default cursor colour.
                   3119: If set, a sequence such as this may be used
                   3120: to change the cursor colour from inside
                   3121: .Nm :
                   3122: .Bd -literal -offset indent
                   3123: $ printf '\e033]12;red\e033\e\e'
                   3124: .Ed
                   3125: .It Em Cs , Csr
1.230     nicm     3126: Change the cursor style.
1.232     jmc      3127: If set, a sequence such as this may be used
                   3128: to change the cursor to an underline:
1.230     nicm     3129: .Bd -literal -offset indent
                   3130: $ printf '\e033[4 q'
                   3131: .Ed
                   3132: .Pp
                   3133: If
                   3134: .Em Csr
                   3135: is set, it will be used to reset the cursor style instead
                   3136: of
                   3137: .Em Cs .
1.232     jmc      3138: .It Em \&Ms
                   3139: This sequence can be used by
                   3140: .Nm
                   3141: to store the current buffer in the host terminal's selection (clipboard).
                   3142: See the
                   3143: .Em set-clipboard
                   3144: option above and the
                   3145: .Xr xterm 1
                   3146: man page.
1.1       nicm     3147: .El
                   3148: .Sh FILES
1.26      nicm     3149: .Bl -tag -width "/etc/tmux.confXXX" -compact
1.1       nicm     3150: .It Pa ~/.tmux.conf
1.6       jmc      3151: Default
1.1       nicm     3152: .Nm
1.6       jmc      3153: configuration file.
1.26      nicm     3154: .It Pa /etc/tmux.conf
                   3155: System-wide configuration file.
1.1       nicm     3156: .El
1.57      jmc      3157: .Sh EXAMPLES
                   3158: To create a new
                   3159: .Nm
                   3160: session running
                   3161: .Xr vi 1 :
                   3162: .Pp
                   3163: .Dl $ tmux new-session vi
                   3164: .Pp
                   3165: Most commands have a shorter form, known as an alias.
                   3166: For new-session, this is
                   3167: .Ic new :
                   3168: .Pp
                   3169: .Dl $ tmux new vi
                   3170: .Pp
                   3171: Alternatively, the shortest unambiguous form of a command is accepted.
                   3172: If there are several options, they are listed:
                   3173: .Bd -literal -offset indent
                   3174: $ tmux n
                   3175: ambiguous command: n, could be: new-session, new-window, next-window
                   3176: .Ed
                   3177: .Pp
                   3178: Within an active session, a new window may be created by typing
                   3179: .Ql C-b c
                   3180: (Ctrl
                   3181: followed by the
                   3182: .Ql b
                   3183: key
                   3184: followed by the
                   3185: .Ql c
                   3186: key).
                   3187: .Pp
                   3188: Windows may be navigated with:
                   3189: .Ql C-b 0
                   3190: (to select window 0),
                   3191: .Ql C-b 1
                   3192: (to select window 1), and so on;
                   3193: .Ql C-b n
                   3194: to select the next window; and
                   3195: .Ql C-b p
                   3196: to select the previous window.
                   3197: .Pp
                   3198: A session may be detached using
                   3199: .Ql C-b d
1.64      nicm     3200: (or by an external event such as
                   3201: .Xr ssh 1
                   3202: disconnection) and reattached with:
1.57      jmc      3203: .Pp
                   3204: .Dl $ tmux attach-session
                   3205: .Pp
                   3206: Typing
                   3207: .Ql C-b \&?
                   3208: lists the current key bindings in the current window; up and down may be used
                   3209: to navigate the list or
                   3210: .Ql q
                   3211: to exit from it.
                   3212: .Pp
                   3213: Commands to be run when the
                   3214: .Nm
                   3215: server is started may be placed in the
                   3216: .Pa ~/.tmux.conf
                   3217: configuration file.
                   3218: Common examples include:
                   3219: .Pp
                   3220: Changing the default prefix key:
                   3221: .Bd -literal -offset indent
                   3222: set-option -g prefix C-a
                   3223: unbind-key C-b
                   3224: bind-key C-a send-prefix
                   3225: .Ed
                   3226: .Pp
                   3227: Turning the status line off, or changing its colour:
                   3228: .Bd -literal -offset indent
                   3229: set-option -g status off
                   3230: set-option -g status-bg blue
                   3231: .Ed
                   3232: .Pp
                   3233: Setting other options, such as the default command,
                   3234: or locking after 30 minutes of inactivity:
                   3235: .Bd -literal -offset indent
                   3236: set-option -g default-command "exec /bin/ksh"
                   3237: set-option -g lock-after-time 1800
                   3238: .Ed
                   3239: .Pp
                   3240: Creating new key bindings:
                   3241: .Bd -literal -offset indent
                   3242: bind-key b set-option status
                   3243: bind-key / command-prompt "split-window 'exec man %%'"
1.73      nicm     3244: bind-key S command-prompt "new-window -n %1 'ssh %1'"
1.57      jmc      3245: .Ed
1.1       nicm     3246: .Sh SEE ALSO
                   3247: .Xr pty 4
                   3248: .Sh AUTHORS
                   3249: .An Nicholas Marriott Aq nicm@users.sourceforge.net