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

1.807   ! nicm        1: .\" $OpenBSD: tmux.1,v 1.806 2020/12/01 08:12:58 nicm Exp $
1.1       nicm        2: .\"
1.477     nicm        3: .\" Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
1.1       nicm        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.807   ! nicm       17: .Dd $Mdocdate: December 1 2020 $
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.767     nicm       26: .Op Fl 2CDluvV
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
1.744     nicm       31: .Op Fl T Ar features
1.1       nicm       32: .Op Ar command Op Ar flags
                     33: .Ek
                     34: .Sh DESCRIPTION
                     35: .Nm
1.59      jmc        36: is a terminal multiplexer:
                     37: it enables a number of terminals to be created, accessed, and
                     38: controlled from a single screen.
1.67      jmc        39: .Nm
                     40: may be detached from a screen
                     41: and continue running in the background,
                     42: then later reattached.
1.1       nicm       43: .Pp
1.60      nicm       44: When
                     45: .Nm
                     46: is started it creates a new
                     47: .Em session
                     48: with a single
                     49: .Em window
                     50: and displays it on screen.
                     51: A status line at the bottom of the screen
                     52: shows information on the current session
                     53: and is used to enter interactive commands.
                     54: .Pp
                     55: A session is a single collection of
                     56: .Em pseudo terminals
                     57: under the management of
                     58: .Nm .
                     59: Each session has one or more
                     60: windows linked to it.
                     61: A window occupies the entire screen
                     62: and may be split into rectangular panes,
                     63: each of which is a separate pseudo terminal
                     64: (the
                     65: .Xr pty 4
                     66: manual page documents the technical details of pseudo terminals).
                     67: Any number of
                     68: .Nm
                     69: instances may connect to the same session,
                     70: and any number of windows may be present in the same session.
                     71: Once all sessions are killed,
                     72: .Nm
                     73: exits.
                     74: .Pp
1.64      nicm       75: Each session is persistent and will survive accidental disconnection
1.66      jmc        76: (such as
1.64      nicm       77: .Xr ssh 1
1.67      jmc        78: connection timeout) or intentional detaching (with the
1.64      nicm       79: .Ql C-b d
                     80: key strokes).
                     81: .Nm
                     82: may be reattached using:
                     83: .Pp
                     84: .Dl $ tmux attach
1.60      nicm       85: .Pp
1.64      nicm       86: In
                     87: .Nm ,
                     88: a session is displayed on screen by a
                     89: .Em client
                     90: and all sessions are managed by a single
                     91: .Em server .
                     92: The server and each client are separate processes which communicate through a
                     93: socket in
                     94: .Pa /tmp .
1.65      nicm       95: .Pp
1.1       nicm       96: The options are as follows:
                     97: .Bl -tag -width "XXXXXXXXXXXX"
                     98: .It Fl 2
                     99: Force
                    100: .Nm
                    101: to assume the terminal supports 256 colours.
1.744     nicm      102: This is equivalent to
                    103: .Fl T Ar 256 .
1.345     nicm      104: .It Fl C
1.369     nicm      105: Start in control mode (see the
                    106: .Sx CONTROL MODE
                    107: section).
1.345     nicm      108: Given twice
                    109: .Xo ( Fl CC ) Xc
                    110: disables echo.
1.91      nicm      111: .It Fl c Ar shell-command
                    112: Execute
                    113: .Ar shell-command
                    114: using the default shell.
                    115: If necessary, the
                    116: .Nm
                    117: server will be started to retrieve the
                    118: .Ic default-shell
                    119: option.
1.153     nicm      120: This option is for compatibility with
                    121: .Xr sh 1
                    122: when
                    123: .Nm
                    124: is used as a login shell.
1.767     nicm      125: .It Fl D
                    126: Do not start the
                    127: .Nm
                    128: server as a daemon.
                    129: This also turns the
                    130: .Ic exit-empty
                    131: option off.
                    132: With
                    133: .Fl D ,
                    134: .Ar command
                    135: may not be specified.
1.1       nicm      136: .It Fl f Ar file
                    137: Specify an alternative configuration file.
                    138: By default,
                    139: .Nm
1.26      nicm      140: loads the system configuration file from
                    141: .Pa /etc/tmux.conf ,
                    142: if present, then looks for a user configuration file at
1.1       nicm      143: .Pa ~/.tmux.conf .
1.306     nicm      144: .Pp
1.1       nicm      145: The configuration file is a set of
                    146: .Nm
                    147: commands which are executed in sequence when the server is first started.
1.306     nicm      148: .Nm
                    149: loads configuration files once when the server process has started.
                    150: The
                    151: .Ic source-file
                    152: command may be used to load a file later.
1.61      nicm      153: .Pp
                    154: .Nm
1.306     nicm      155: shows any error messages from commands in configuration files in the first
                    156: session created, and continues to process the rest of the configuration file.
1.1       nicm      157: .It Fl L Ar socket-name
                    158: .Nm
                    159: stores the server socket in a directory under
1.455     nicm      160: .Ev TMUX_TMPDIR
                    161: or
1.208     nicm      162: .Pa /tmp
1.455     nicm      163: if it is unset.
1.355     nicm      164: The default socket is named
1.1       nicm      165: .Em default .
                    166: This option allows a different socket name to be specified, allowing several
                    167: independent
                    168: .Nm
                    169: servers to be run.
                    170: Unlike
                    171: .Fl S
1.789     nicm      172: a full path is not necessary: the sockets are all created in a directory
                    173: .Pa tmux-UID
                    174: under the directory given by
                    175: .Ev TMUX_TMPDIR
                    176: or in
                    177: .Pa /tmp .
                    178: The
                    179: .Pa tmux-UID
                    180: directory is created by
                    181: .Nm
                    182: and must not be world readable, writable or executable.
1.2       nicm      183: .Pp
                    184: If the socket is accidentally removed, the
1.6       jmc       185: .Dv SIGUSR1
1.2       nicm      186: signal may be sent to the
                    187: .Nm
1.422     nicm      188: server process to recreate it (note that this will fail if any parent
                    189: directories are missing).
1.166     sobrado   190: .It Fl l
                    191: Behave as a login shell.
                    192: This flag currently has no effect and is for compatibility with other shells
                    193: when using tmux as a login shell.
1.1       nicm      194: .It Fl S Ar socket-path
                    195: Specify a full alternative path to the server socket.
                    196: If
                    197: .Fl S
                    198: is specified, the default socket directory is not used and any
                    199: .Fl L
                    200: flag is ignored.
                    201: .It Fl u
1.644     schwarze  202: Write UTF-8 output to the terminal even if the first environment
                    203: variable of
1.14      nicm      204: .Ev LC_ALL ,
1.644     schwarze  205: .Ev LC_CTYPE ,
                    206: or
1.2       nicm      207: .Ev LANG
1.644     schwarze  208: that is set does not contain
                    209: .Qq UTF-8
                    210: or
                    211: .Qq UTF8 .
1.744     nicm      212: This is equivalent to
                    213: .Fl T Ar UTF-8 .
                    214: .It Fl T Ar features
                    215: Set terminal features for the client.
                    216: This is a comma-separated list of features.
                    217: See the
                    218: .Ic terminal-features
                    219: option.
1.1       nicm      220: .It Fl v
                    221: Request verbose logging.
                    222: Log messages will be saved into
                    223: .Pa tmux-client-PID.log
                    224: and
                    225: .Pa tmux-server-PID.log
                    226: files in the current directory, where
                    227: .Em PID
1.6       jmc       228: is the PID of the server or client process.
1.558     nicm      229: If
                    230: .Fl v
                    231: is specified twice, an additional
                    232: .Pa tmux-out-PID.log
                    233: file is generated with a copy of everything
                    234: .Nm
                    235: writes to the terminal.
                    236: .Pp
                    237: The
                    238: .Dv SIGUSR2
                    239: signal may be sent to the
                    240: .Nm
                    241: server process to toggle logging between on (as if
                    242: .Fl v
                    243: was given) and off.
1.708     nicm      244: .It Fl V
                    245: Report the
                    246: .Nm
                    247: version.
1.1       nicm      248: .It Ar command Op Ar flags
                    249: This specifies one of a set of commands used to control
                    250: .Nm ,
1.6       jmc       251: as described in the following sections.
1.59      jmc       252: If no commands are specified, the
1.1       nicm      253: .Ic new-session
                    254: command is assumed.
1.57      jmc       255: .El
1.627     nicm      256: .Sh DEFAULT KEY BINDINGS
1.64      nicm      257: .Nm
                    258: may be controlled from an attached client by using a key combination of a
                    259: prefix key,
                    260: .Ql C-b
                    261: (Ctrl-b) by default, followed by a command key.
                    262: .Pp
1.172     nicm      263: The default command key bindings are:
1.64      nicm      264: .Pp
1.171     nicm      265: .Bl -tag -width "XXXXXXXXXX" -offset indent -compact
                    266: .It C-b
                    267: Send the prefix key (C-b) through to the application.
                    268: .It C-o
                    269: Rotate the panes in the current window forwards.
                    270: .It C-z
                    271: Suspend the
                    272: .Nm
                    273: client.
                    274: .It !
                    275: Break the current pane out of the window.
                    276: .It \&"
1.625     nicm      277: .\" "
1.171     nicm      278: Split the current pane into two, top and bottom.
                    279: .It #
                    280: List all paste buffers.
1.236     nicm      281: .It $
                    282: Rename the current session.
1.171     nicm      283: .It %
                    284: Split the current pane into two, left and right.
                    285: .It &
                    286: Kill the current window.
                    287: .It '
                    288: Prompt for a window index to select.
1.412     nicm      289: .It \&(
                    290: Switch the attached client to the previous session.
                    291: .It \&)
                    292: Switch the attached client to the next session.
1.171     nicm      293: .It ,
                    294: Rename the current window.
                    295: .It -
                    296: Delete the most recently copied buffer of text.
                    297: .It .
                    298: Prompt for an index to move the current window.
                    299: .It 0 to 9
                    300: Select windows 0 to 9.
                    301: .It :
                    302: Enter the
                    303: .Nm
                    304: command prompt.
1.187     nicm      305: .It ;
                    306: Move to the previously active pane.
1.178     nicm      307: .It =
                    308: Choose which buffer to paste interactively from a list.
1.171     nicm      309: .It \&?
                    310: List all key bindings.
                    311: .It D
                    312: Choose a client to detach.
1.412     nicm      313: .It L
                    314: Switch the attached client back to the last session.
1.182     jmc       315: .It \&[
1.171     nicm      316: Enter copy mode to copy text or view the history.
1.182     jmc       317: .It \&]
1.171     nicm      318: Paste the most recently copied buffer of text.
1.64      nicm      319: .It c
1.65      nicm      320: Create a new window.
1.64      nicm      321: .It d
1.65      nicm      322: Detach the current client.
1.171     nicm      323: .It f
                    324: Prompt to search for text in open windows.
                    325: .It i
                    326: Display some information about the current window.
1.64      nicm      327: .It l
1.65      nicm      328: Move to the previously selected window.
1.684     nicm      329: .It m
                    330: Mark the current pane (see
                    331: .Ic select-pane
                    332: .Fl m ) .
                    333: .It M
                    334: Clear the marked pane.
1.64      nicm      335: .It n
1.65      nicm      336: Change to the next window.
1.171     nicm      337: .It o
                    338: Select the next pane in the current window.
1.64      nicm      339: .It p
1.65      nicm      340: Change to the previous window.
1.171     nicm      341: .It q
                    342: Briefly display pane indexes.
                    343: .It r
                    344: Force redraw of the attached client.
                    345: .It s
                    346: Select a new session for the attached client interactively.
                    347: .It t
                    348: Show the time.
                    349: .It w
                    350: Choose the current window interactively.
                    351: .It x
                    352: Kill the current pane.
1.412     nicm      353: .It z
                    354: Toggle zoom state of the current pane.
1.171     nicm      355: .It {
                    356: Swap the current pane with the previous pane.
                    357: .It }
                    358: Swap the current pane with the next pane.
                    359: .It ~
                    360: Show previous messages from
                    361: .Nm ,
                    362: if any.
                    363: .It Page Up
                    364: Enter copy mode and scroll one page up.
                    365: .It Up, Down
                    366: .It Left, Right
                    367: Change to the pane above, below, to the left, or to the right of the current
                    368: pane.
                    369: .It M-1 to M-5
                    370: Arrange panes in one of the five preset layouts: even-horizontal,
                    371: even-vertical, main-horizontal, main-vertical, or tiled.
1.412     nicm      372: .It Space
                    373: Arrange the current window in the next preset layout.
1.171     nicm      374: .It M-n
                    375: Move to the next window with a bell or activity marker.
                    376: .It M-o
                    377: Rotate the panes in the current window backwards.
                    378: .It M-p
                    379: Move to the previous window with a bell or activity marker.
                    380: .It C-Up, C-Down
                    381: .It C-Left, C-Right
                    382: Resize the current pane in steps of one cell.
                    383: .It M-Up, M-Down
                    384: .It M-Left, M-Right
                    385: Resize the current pane in steps of five cells.
1.64      nicm      386: .El
                    387: .Pp
                    388: Key bindings may be changed with the
                    389: .Ic bind-key
                    390: and
                    391: .Ic unbind-key
                    392: commands.
1.651     nicm      393: .Sh COMMAND PARSING AND EXECUTION
                    394: .Nm
                    395: supports a large number of commands which can be used to control its
                    396: behaviour.
                    397: Each command is named and can accept zero or more flags and arguments.
                    398: They may be bound to a key with the
                    399: .Ic bind-key
                    400: command or run from the shell prompt, a shell script, a configuration file or
                    401: the command prompt.
                    402: For example, the same
                    403: .Ic set-option
                    404: command run from the shell prompt, from
                    405: .Pa ~/.tmux.conf
                    406: and bound to a key may look like:
                    407: .Bd -literal -offset indent
                    408: $ tmux set-option -g status-style bg=cyan
                    409:
                    410: set-option -g status-style bg=cyan
                    411:
                    412: bind-key C set-option -g status-style bg=cyan
                    413: .Ed
                    414: .Pp
                    415: Here, the command name is
                    416: .Ql set-option ,
                    417: .Ql Fl g
                    418: is a flag and
                    419: .Ql status-style
                    420: and
                    421: .Ql bg=cyan
                    422: are arguments.
                    423: .Pp
                    424: .Nm
                    425: distinguishes between command parsing and execution.
                    426: In order to execute a command,
                    427: .Nm
                    428: needs it to be split up into its name and arguments.
                    429: This is command parsing.
                    430: If a command is run from the shell, the shell parses it; from inside
                    431: .Nm
                    432: or from a configuration file,
                    433: .Nm
                    434: does.
                    435: Examples of when
                    436: .Nm
                    437: parses commands are:
                    438: .Bl -dash -offset indent
                    439: .It
                    440: in a configuration file;
                    441: .It
                    442: typed at the command prompt (see
                    443: .Ic command-prompt ) ;
                    444: .It
                    445: given to
                    446: .Ic bind-key ;
                    447: .It
                    448: passed as arguments to
                    449: .Ic if-shell
                    450: or
                    451: .Ic confirm-before .
                    452: .El
                    453: .Pp
                    454: To execute commands, each client has a
                    455: .Ql command queue .
                    456: A global command queue not attached to any client is used on startup
                    457: for configuration files like
                    458: .Pa ~/.tmux.conf .
                    459: Parsed commands added to the queue are executed in order.
                    460: Some commands, like
                    461: .Ic if-shell
                    462: and
                    463: .Ic confirm-before ,
                    464: parse their argument to create a new command which is inserted immediately
                    465: after themselves.
                    466: This means that arguments can be parsed twice or more - once when the parent command (such as
                    467: .Ic if-shell )
                    468: is parsed and again when it parses and executes its command.
                    469: Commands like
                    470: .Ic if-shell ,
                    471: .Ic run-shell
                    472: and
                    473: .Ic display-panes
                    474: stop execution of subsequent commands on the queue until something happens -
                    475: .Ic if-shell
                    476: and
                    477: .Ic run-shell
                    478: until a shell command finishes and
                    479: .Ic display-panes
                    480: until a key is pressed.
                    481: For example, the following commands:
                    482: .Bd -literal -offset indent
                    483: new-session; new-window
                    484: if-shell "true" "split-window"
                    485: kill-session
                    486: .Ed
                    487: .Pp
                    488: Will execute
                    489: .Ic new-session ,
                    490: .Ic new-window ,
                    491: .Ic if-shell ,
                    492: the shell command
                    493: .Xr true 1 ,
1.671     nicm      494: .Ic split-window
1.651     nicm      495: and
                    496: .Ic kill-session
                    497: in that order.
                    498: .Pp
                    499: The
                    500: .Sx COMMANDS
                    501: section lists the
                    502: .Nm
                    503: commands and their arguments.
                    504: .Sh PARSING SYNTAX
                    505: This section describes the syntax of commands parsed by
                    506: .Nm ,
                    507: for example in a configuration file or at the command prompt.
1.671     nicm      508: Note that when commands are entered into the shell, they are parsed by the shell
1.651     nicm      509: - see for example
                    510: .Xr ksh 1
                    511: or
                    512: .Xr csh 1 .
                    513: .Pp
                    514: Each command is terminated by a newline or a semicolon (;).
                    515: Commands separated by semicolons together form a
                    516: .Ql command sequence
                    517: - if a command in the sequence encounters an error, no subsequent commands are
                    518: executed.
                    519: .Pp
                    520: Comments are marked by the unquoted # character - any remaining text after a
                    521: comment is ignored until the end of the line.
                    522: .Pp
                    523: If the last character of a line is \e, the line is joined with the following
                    524: line (the \e and the newline are completely removed).
                    525: This is called line continuation and applies both inside and outside quoted
1.656     nicm      526: strings and in comments, but not inside braces.
1.651     nicm      527: .Pp
1.655     nicm      528: Command arguments may be specified as strings surrounded by single (') quotes,
                    529: double quotes (") or braces ({}).
1.651     nicm      530: .\" "
                    531: This is required when the argument contains any special character.
1.655     nicm      532: Single and double quoted strings cannot span multiple lines except with line
                    533: continuation.
                    534: Braces can span multiple lines.
1.651     nicm      535: .Pp
                    536: Outside of quotes and inside double quotes, these replacements are performed:
                    537: .Bl -dash -offset indent
                    538: .It
                    539: Environment variables preceded by $ are replaced with their value from the
                    540: global environment (see the
                    541: .Sx GLOBAL AND SESSION ENVIRONMENT
                    542: section).
                    543: .It
                    544: A leading ~ or ~user is expanded to the home directory of the current or
                    545: specified user.
                    546: .It
                    547: \euXXXX or \euXXXXXXXX is replaced by the Unicode codepoint corresponding to
                    548: the given four or eight digit hexadecimal number.
                    549: .It
                    550: When preceded (escaped) by a \e, the following characters are replaced: \ee by
                    551: the escape character; \er by a carriage return; \en by a newline; and \et by a
                    552: tab.
1.660     nicm      553: .It
                    554: \eooo is replaced by a character of the octal value ooo.
                    555: Three octal digits are required, for example \e001.
                    556: The largest valid character is \e377.
                    557: .It
1.651     nicm      558: Any other characters preceded by \e are replaced by themselves (that is, the \e
                    559: is removed) and are not treated as having any special meaning - so for example
                    560: \e; will not mark a command sequence and \e$ will not expand an environment
                    561: variable.
                    562: .El
                    563: .Pp
1.776     nicm      564: Braces are parsed as a configuration file (so conditions such as
                    565: .Ql %if
                    566: are processed) and then converted into a string.
                    567: They are designed to avoid the need for additional escaping when passing a
                    568: group of
1.655     nicm      569: .Nm
1.776     nicm      570: commands as an argument (for example to
                    571: .Ic if-shell ) .
1.655     nicm      572: These two examples produce an identical command - note that no escaping is
                    573: needed when using {}:
                    574: .Bd -literal -offset indent
                    575: if-shell true {
                    576:     display -p 'brace-dollar-foo: }$foo'
                    577: }
                    578:
1.776     nicm      579: if-shell true "display -p 'brace-dollar-foo: }\e$foo'"
1.655     nicm      580: .Ed
                    581: .Pp
                    582: Braces may be enclosed inside braces, for example:
                    583: .Bd -literal -offset indent
                    584: bind x if-shell "true" {
                    585:     if-shell "true" {
1.706     nicm      586:         display "true!"
1.655     nicm      587:     }
                    588: }
                    589: .Ed
                    590: .Pp
1.651     nicm      591: Environment variables may be set by using the syntax
                    592: .Ql name=value ,
                    593: for example
                    594: .Ql HOME=/home/user .
                    595: Variables set during parsing are added to the global environment.
1.728     nicm      596: A hidden variable may be set with
                    597: .Ql %hidden ,
                    598: for example:
                    599: .Bd -literal -offset indent
                    600: %hidden MYVAR=42
                    601: .Ed
                    602: .Pp
                    603: Hidden variables are not passed to the environment of processes created
                    604: by tmux.
                    605: See the
                    606: .Sx GLOBAL AND SESSION ENVIRONMENT
                    607: section.
1.651     nicm      608: .Pp
                    609: Commands may be parsed conditionally by surrounding them with
                    610: .Ql %if ,
                    611: .Ql %elif ,
                    612: .Ql %else
                    613: and
                    614: .Ql %endif .
                    615: The argument to
                    616: .Ql %if
                    617: and
                    618: .Ql %elif
                    619: is expanded as a format (see
                    620: .Sx FORMATS )
                    621: and if it evaluates to false (zero or empty), subsequent text is ignored until
                    622: the closing
                    623: .Ql %elif ,
                    624: .Ql %else
                    625: or
                    626: .Ql %endif .
                    627: For example:
                    628: .Bd -literal -offset indent
1.666     nicm      629: %if "#{==:#{host},myhost}"
1.651     nicm      630: set -g status-style bg=red
1.666     nicm      631: %elif "#{==:#{host},myotherhost}"
1.651     nicm      632: set -g status-style bg=green
                    633: %else
                    634: set -g status-style bg=blue
                    635: %endif
                    636: .Ed
                    637: .Pp
                    638: Will change the status line to red if running on
                    639: .Ql myhost ,
                    640: green if running on
                    641: .Ql myotherhost ,
                    642: or blue if running on another host.
                    643: Conditionals may be given on one line, for example:
                    644: .Bd -literal -offset indent
                    645: %if #{==:#{host},myhost} set -g status-style bg=red %endif
                    646: .Ed
1.57      jmc       647: .Sh COMMANDS
1.651     nicm      648: This section describes the commands supported by
1.57      jmc       649: .Nm .
                    650: Most commands accept the optional
                    651: .Fl t
1.432     nicm      652: (and sometimes
                    653: .Fl s )
1.57      jmc       654: argument with one of
                    655: .Ar target-client ,
1.678     nicm      656: .Ar target-session ,
1.57      jmc       657: .Ar target-window ,
                    658: or
                    659: .Ar target-pane .
                    660: These specify the client, session, window or pane which a command should affect.
1.423     nicm      661: .Pp
1.57      jmc       662: .Ar target-client
1.540     nicm      663: should be the name of the client,
                    664: typically the
1.57      jmc       665: .Xr pty 4
                    666: file to which the client is connected, for example either of
                    667: .Pa /dev/ttyp1
                    668: or
                    669: .Pa ttyp1
                    670: for the client attached to
                    671: .Pa /dev/ttyp1 .
1.423     nicm      672: If no client is specified,
                    673: .Nm
                    674: attempts to work out the client currently in use; if that fails, an error is
                    675: reported.
1.57      jmc       676: Clients may be listed with the
                    677: .Ic list-clients
                    678: command.
1.1       nicm      679: .Pp
1.57      jmc       680: .Ar target-session
1.423     nicm      681: is tried as, in order:
                    682: .Bl -enum -offset Ds
                    683: .It
                    684: A session ID prefixed with a $.
                    685: .It
                    686: An exact name of a session (as listed by the
1.57      jmc       687: .Ic list-sessions
1.423     nicm      688: command).
                    689: .It
                    690: The start of a session name, for example
                    691: .Ql mysess
                    692: would match a session named
                    693: .Ql mysession .
                    694: .It
                    695: An
1.57      jmc       696: .Xr fnmatch 3
1.423     nicm      697: pattern which is matched against the session name.
                    698: .El
                    699: .Pp
1.441     nicm      700: If the session name is prefixed with an
                    701: .Ql = ,
1.435     nicm      702: only an exact match is accepted (so
                    703: .Ql =mysess
                    704: will only match exactly
                    705: .Ql mysess ,
                    706: not
                    707: .Ql mysession ) .
1.441     nicm      708: .Pp
1.423     nicm      709: If a single session is found, it is used as the target session; multiple matches
1.57      jmc       710: produce an error.
                    711: If a session is omitted, the current session is used if available; if no
1.117     nicm      712: current session is available, the most recently used is chosen.
1.1       nicm      713: .Pp
1.57      jmc       714: .Ar target-window
1.472     nicm      715: (or
                    716: .Ar src-window
                    717: or
                    718: .Ar dst-window )
1.57      jmc       719: specifies a window in the form
                    720: .Em session Ns \&: Ns Em window .
                    721: .Em session
                    722: follows the same rules as for
                    723: .Ar target-session ,
                    724: and
                    725: .Em window
1.423     nicm      726: is looked for in order as:
                    727: .Bl -enum -offset Ds
                    728: .It
                    729: A special token, listed below.
                    730: .It
                    731: A window index, for example
                    732: .Ql mysession:1
                    733: is window 1 in session
                    734: .Ql mysession .
                    735: .It
                    736: A window ID, such as @1.
                    737: .It
                    738: An exact window name, such as
                    739: .Ql mysession:mywindow .
                    740: .It
                    741: The start of a window name, such as
                    742: .Ql mysession:mywin .
                    743: .It
                    744: As an
1.57      jmc       745: .Xr fnmatch 3
1.423     nicm      746: pattern matched against the window name.
                    747: .El
                    748: .Pp
1.435     nicm      749: Like sessions, a
                    750: .Ql =
                    751: prefix will do an exact match only.
1.57      jmc       752: An empty window name specifies the next unused index if appropriate (for
                    753: example the
                    754: .Ic new-window
                    755: and
                    756: .Ic link-window
                    757: commands)
                    758: otherwise the current window in
                    759: .Em session
                    760: is chosen.
1.423     nicm      761: .Pp
1.424     nicm      762: The following special tokens are available to indicate particular windows.
                    763: Each has a single-character alternative form.
1.423     nicm      764: .Bl -column "XXXXXXXXXX" "X"
                    765: .It Sy "Token" Ta Sy "" Ta Sy "Meaning"
                    766: .It Li "{start}" Ta "^" Ta "The lowest-numbered window"
                    767: .It Li "{end}" Ta "$" Ta "The highest-numbered window"
                    768: .It Li "{last}" Ta "!" Ta "The last (previously current) window"
                    769: .It Li "{next}" Ta "+" Ta "The next window by number"
                    770: .It Li "{previous}" Ta "-" Ta "The previous window by number"
                    771: .El
1.1       nicm      772: .Pp
1.57      jmc       773: .Ar target-pane
1.472     nicm      774: (or
                    775: .Ar src-pane
                    776: or
                    777: .Ar dst-pane )
                    778: may be a pane ID or takes a similar form to
1.57      jmc       779: .Ar target-window
1.423     nicm      780: but with the optional addition of a period followed by a pane index or pane ID,
                    781: for example:
                    782: .Ql mysession:mywindow.1 .
1.57      jmc       783: If the pane index is omitted, the currently active pane in the specified
                    784: window is used.
1.423     nicm      785: The following special tokens are available for the pane index:
                    786: .Bl -column "XXXXXXXXXXXXXX" "X"
                    787: .It Sy "Token" Ta Sy "" Ta Sy "Meaning"
                    788: .It Li "{last}" Ta "!" Ta "The last (previously active) pane"
                    789: .It Li "{next}" Ta "+" Ta "The next pane by number"
                    790: .It Li "{previous}" Ta "-" Ta "The previous pane by number"
                    791: .It Li "{top}" Ta "" Ta "The top pane"
                    792: .It Li "{bottom}" Ta "" Ta "The bottom pane"
                    793: .It Li "{left}" Ta "" Ta "The leftmost pane"
                    794: .It Li "{right}" Ta "" Ta "The rightmost pane"
                    795: .It Li "{top-left}" Ta "" Ta "The top-left pane"
                    796: .It Li "{top-right}" Ta "" Ta "The top-right pane"
                    797: .It Li "{bottom-left}" Ta "" Ta "The bottom-left pane"
                    798: .It Li "{bottom-right}" Ta "" Ta "The bottom-right pane"
1.447     nicm      799: .It Li "{up-of}" Ta "" Ta "The pane above the active pane"
                    800: .It Li "{down-of}" Ta "" Ta "The pane below the active pane"
                    801: .It Li "{left-of}" Ta "" Ta "The pane to the left of the active pane"
                    802: .It Li "{right-of}" Ta "" Ta "The pane to the right of the active pane"
1.423     nicm      803: .El
1.177     nicm      804: .Pp
1.423     nicm      805: The tokens
1.177     nicm      806: .Ql +
                    807: and
                    808: .Ql -
                    809: may be followed by an offset, for example:
                    810: .Bd -literal -offset indent
                    811: select-window -t:+2
                    812: .Ed
                    813: .Pp
1.432     nicm      814: In addition,
                    815: .Em target-session ,
                    816: .Em target-window
                    817: or
                    818: .Em target-pane
                    819: may consist entirely of the token
                    820: .Ql {mouse}
                    821: (alternative form
                    822: .Ql = )
1.678     nicm      823: to specify the session, window or pane where the most recent mouse event occurred
1.432     nicm      824: (see the
                    825: .Sx MOUSE SUPPORT
                    826: section)
                    827: or
                    828: .Ql {marked}
                    829: (alternative form
                    830: .Ql ~ )
                    831: to specify the marked pane (see
                    832: .Ic select-pane
                    833: .Fl m ) .
                    834: .Pp
1.423     nicm      835: Sessions, window and panes are each numbered with a unique ID; session IDs are
                    836: prefixed with a
                    837: .Ql $ ,
                    838: windows with a
                    839: .Ql @ ,
                    840: and panes with a
                    841: .Ql % .
                    842: These are unique and are unchanged for the life of the session, window or pane
                    843: in the
1.212     nicm      844: .Nm
1.423     nicm      845: server.
                    846: The pane ID is passed to the child process of the pane in the
1.212     nicm      847: .Ev TMUX_PANE
                    848: environment variable.
1.423     nicm      849: IDs may be displayed using the
                    850: .Ql session_id ,
                    851: .Ql window_id ,
                    852: or
                    853: .Ql pane_id
                    854: formats (see the
                    855: .Sx FORMATS
                    856: section) and the
                    857: .Ic display-message ,
                    858: .Ic list-sessions ,
                    859: .Ic list-windows
                    860: or
                    861: .Ic list-panes
                    862: commands.
1.15      jmc       863: .Pp
1.153     nicm      864: .Ar shell-command
                    865: arguments are
                    866: .Xr sh 1
                    867: commands.
1.394     nicm      868: This may be a single argument passed to the shell, for example:
1.153     nicm      869: .Bd -literal -offset indent
                    870: new-window 'vi /etc/passwd'
                    871: .Ed
1.394     nicm      872: .Pp
                    873: Will run:
                    874: .Bd -literal -offset indent
                    875: /bin/sh -c 'vi /etc/passwd'
                    876: .Ed
                    877: .Pp
                    878: Additionally, the
                    879: .Ic new-window ,
                    880: .Ic new-session ,
                    881: .Ic split-window ,
                    882: .Ic respawn-window
                    883: and
                    884: .Ic respawn-pane
                    885: commands allow
                    886: .Ar shell-command
                    887: to be given as multiple arguments and executed directly (without
                    888: .Ql sh -c ) .
                    889: This can avoid issues with shell quoting.
                    890: For example:
                    891: .Bd -literal -offset indent
                    892: $ tmux new-window vi /etc/passwd
                    893: .Ed
                    894: .Pp
                    895: Will run
                    896: .Xr vi 1
                    897: directly without invoking the shell.
1.153     nicm      898: .Pp
                    899: .Ar command
                    900: .Op Ar arguments
                    901: refers to a
                    902: .Nm
1.655     nicm      903: command, either passed with the command and arguments separately, for example:
1.153     nicm      904: .Bd -literal -offset indent
1.629     nicm      905: bind-key F1 set-option status off
1.153     nicm      906: .Ed
                    907: .Pp
1.655     nicm      908: Or passed as a single string argument in
                    909: .Pa .tmux.conf ,
                    910: for example:
1.153     nicm      911: .Bd -literal -offset indent
1.655     nicm      912: bind-key F1 { set-option status off }
1.153     nicm      913: .Ed
                    914: .Pp
                    915: Example
                    916: .Nm
                    917: commands include:
1.13      nicm      918: .Bd -literal -offset indent
1.57      jmc       919: refresh-client -t/dev/ttyp2
                    920:
                    921: rename-session -tfirst newname
                    922:
1.668     nicm      923: set-option -wt:0 monitor-activity on
1.57      jmc       924:
                    925: new-window ; split-window -d
1.244     nicm      926:
                    927: bind-key R source-file ~/.tmux.conf \e; \e
                    928:        display-message "source-file done"
1.13      nicm      929: .Ed
1.153     nicm      930: .Pp
                    931: Or from
                    932: .Xr sh 1 :
                    933: .Bd -literal -offset indent
                    934: $ tmux kill-window -t :1
                    935:
1.159     jmc       936: $ tmux new-window \e; split-window -d
1.153     nicm      937:
1.159     jmc       938: $ tmux new-session -d 'vi /etc/passwd' \e; split-window -d \e; attach
1.153     nicm      939: .Ed
1.57      jmc       940: .Sh CLIENTS AND SESSIONS
1.153     nicm      941: The
                    942: .Nm
                    943: server manages clients, sessions, windows and panes.
                    944: Clients are attached to sessions to interact with them, either
                    945: when they are created with the
                    946: .Ic new-session
                    947: command, or later with the
                    948: .Ic attach-session
                    949: command.
1.188     nicm      950: Each session has one or more windows
1.153     nicm      951: .Em linked
                    952: into it.
                    953: Windows may be linked to multiple sessions and are made up of one or
                    954: more panes,
                    955: each of which contains a pseudo terminal.
                    956: Commands for creating, linking and otherwise manipulating windows
                    957: are covered
                    958: in the
                    959: .Sx WINDOWS AND PANES
                    960: section.
                    961: .Pp
                    962: The following commands are available to manage clients and sessions:
1.57      jmc       963: .Bl -tag -width Ds
                    964: .It Xo Ic attach-session
1.662     nicm      965: .Op Fl dErx
1.372     nicm      966: .Op Fl c Ar working-directory
1.762     nicm      967: .Op Fl f Ar flags
1.57      jmc       968: .Op Fl t Ar target-session
                    969: .Xc
                    970: .D1 (alias: Ic attach )
                    971: If run from outside
                    972: .Nm ,
                    973: create a new client in the current terminal and attach it to
                    974: .Ar target-session .
                    975: If used from inside, switch the current client.
                    976: If
                    977: .Fl d
                    978: is specified, any other clients attached to the session are detached.
1.662     nicm      979: If
                    980: .Fl x
1.703     nicm      981: is given, send
                    982: .Dv SIGHUP
                    983: to the parent process of the client as well as
1.662     nicm      984: detaching the client, typically causing it to exit.
1.762     nicm      985: .Fl f
                    986: sets a comma-separated list of client flags.
                    987: The flags are:
                    988: .Bl -tag -width Ds
1.778     nicm      989: .It active-pane
                    990: the client has an independent active pane
1.762     nicm      991: .It ignore-size
                    992: the client does not affect the size of other clients
                    993: .It no-output
                    994: the client does not receive pane output in control mode
1.778     nicm      995: .It pause-after=seconds
                    996: output is paused once the pane is
                    997: .Ar seconds
                    998: behind in control mode
                    999: .It read-only
                   1000: the client is read-only
1.786     nicm     1001: .It wait-exit
                   1002: wait for an empty line input before exiting in control mode
1.762     nicm     1003: .El
                   1004: .Pp
                   1005: A leading
1.799     tim      1006: .Ql \&!
1.762     nicm     1007: turns a flag off if the client is already attached.
1.148     nicm     1008: .Fl r
1.762     nicm     1009: is an alias for
                   1010: .Fl f
                   1011: .Ar read-only,ignore-size .
                   1012: When a client is read-only, only keys bound to the
1.148     nicm     1013: .Ic detach-client
1.242     nicm     1014: or
                   1015: .Ic switch-client
1.762     nicm     1016: commands have any effect.
1.769     nicm     1017: A client with the
                   1018: .Ar active-pane
                   1019: flag allows the active pane to be selected independently of the window's active
                   1020: pane used by clients without the flag.
                   1021: This only affects the cursor position and commands issued from the client;
                   1022: other features such as hooks and styles continue to use the window's active
                   1023: pane.
1.13      nicm     1024: .Pp
1.57      jmc      1025: If no server is started,
                   1026: .Ic attach-session
                   1027: will attempt to start it; this will fail unless sessions are created in the
                   1028: configuration file.
1.217     nicm     1029: .Pp
                   1030: The
                   1031: .Ar target-session
                   1032: rules for
                   1033: .Ic attach-session
                   1034: are slightly adjusted: if
                   1035: .Nm
                   1036: needs to select the most recently used session, it will prefer the most
                   1037: recently used
                   1038: .Em unattached
                   1039: session.
1.372     nicm     1040: .Pp
                   1041: .Fl c
                   1042: will set the session working directory (used for new windows) to
                   1043: .Ar working-directory .
1.436     nicm     1044: .Pp
                   1045: If
                   1046: .Fl E
1.480     nicm     1047: is used, the
1.436     nicm     1048: .Ic update-environment
                   1049: option will not be applied.
1.211     nicm     1050: .It Xo Ic detach-client
1.463     nicm     1051: .Op Fl aP
1.525     nicm     1052: .Op Fl E Ar shell-command
1.219     nicm     1053: .Op Fl s Ar target-session
1.211     nicm     1054: .Op Fl t Ar target-client
                   1055: .Xc
1.57      jmc      1056: .D1 (alias: Ic detach )
1.218     nicm     1057: Detach the current client if bound to a key, the client specified with
                   1058: .Fl t ,
1.258     jmc      1059: or all clients currently attached to the session specified by
1.218     nicm     1060: .Fl s .
1.296     nicm     1061: The
                   1062: .Fl a
                   1063: option kills all but the client given with
                   1064: .Fl t .
1.211     nicm     1065: If
                   1066: .Fl P
1.703     nicm     1067: is given, send
                   1068: .Dv SIGHUP
                   1069: to the parent process of the client, typically causing it
1.211     nicm     1070: to exit.
1.525     nicm     1071: With
                   1072: .Fl E ,
                   1073: run
                   1074: .Ar shell-command
                   1075: to replace the client.
1.57      jmc      1076: .It Ic has-session Op Fl t Ar target-session
                   1077: .D1 (alias: Ic has )
                   1078: Report an error and exit with 1 if the specified session does not exist.
                   1079: If it does exist, exit with 0.
                   1080: .It Ic kill-server
                   1081: Kill the
1.1       nicm     1082: .Nm
1.57      jmc      1083: server and clients and destroy all sessions.
1.369     nicm     1084: .It Xo Ic kill-session
1.464     nicm     1085: .Op Fl aC
1.297     nicm     1086: .Op Fl t Ar target-session
1.369     nicm     1087: .Xc
1.57      jmc      1088: Destroy the given session, closing any windows linked to it and no other
                   1089: sessions, and detaching all clients attached to it.
1.297     nicm     1090: If
                   1091: .Fl a
                   1092: is given, all sessions but the specified one is killed.
1.464     nicm     1093: The
                   1094: .Fl C
1.467     nicm     1095: flag clears alerts (bell, activity, or silence) in all windows linked to the
1.464     nicm     1096: session.
1.250     nicm     1097: .It Xo Ic list-clients
                   1098: .Op Fl F Ar format
                   1099: .Op Fl t Ar target-session
                   1100: .Xc
1.57      jmc      1101: .D1 (alias: Ic lsc )
1.221     jmc      1102: List all clients attached to the server.
1.250     nicm     1103: For the meaning of the
                   1104: .Fl F
                   1105: flag, see the
1.252     jmc      1106: .Sx FORMATS
                   1107: section.
1.221     jmc      1108: If
1.220     nicm     1109: .Ar target-session
                   1110: is specified, list only clients connected to that session.
1.489     nicm     1111: .It Xo Ic list-commands
                   1112: .Op Fl F Ar format
1.731     nicm     1113: .Op Ar command
1.489     nicm     1114: .Xc
1.57      jmc      1115: .D1 (alias: Ic lscm )
1.731     nicm     1116: List the syntax of
                   1117: .Ar command
                   1118: or - if omitted - of all commands supported by
1.57      jmc      1119: .Nm .
1.738     nicm     1120: .It Xo Ic list-sessions
                   1121: .Op Fl F Ar format
                   1122: .Op Fl f Ar filter
                   1123: .Xc
1.57      jmc      1124: .D1 (alias: Ic ls )
                   1125: List all sessions managed by the server.
1.247     nicm     1126: .Fl F
1.738     nicm     1127: specifies the format of each line and
                   1128: .Fl f
                   1129: a filter.
                   1130: Only sessions for which the filter is true are shown.
                   1131: See the
1.247     nicm     1132: .Sx FORMATS
                   1133: section.
1.175     nicm     1134: .It Ic lock-client Op Fl t Ar target-client
                   1135: .D1 (alias: Ic lockc )
1.92      nicm     1136: Lock
                   1137: .Ar target-client ,
                   1138: see the
                   1139: .Ic lock-server
                   1140: command.
1.175     nicm     1141: .It Ic lock-session Op Fl t Ar target-session
                   1142: .D1 (alias: Ic locks )
1.92      nicm     1143: Lock all clients attached to
                   1144: .Ar target-session .
1.57      jmc      1145: .It Xo Ic new-session
1.662     nicm     1146: .Op Fl AdDEPX
1.371     nicm     1147: .Op Fl c Ar start-directory
1.760     nicm     1148: .Op Fl e Ar environment
1.762     nicm     1149: .Op Fl f Ar flags
1.351     nicm     1150: .Op Fl F Ar format
1.57      jmc      1151: .Op Fl n Ar window-name
                   1152: .Op Fl s Ar session-name
1.536     nicm     1153: .Op Fl t Ar group-name
1.210     nicm     1154: .Op Fl x Ar width
                   1155: .Op Fl y Ar height
1.153     nicm     1156: .Op Ar shell-command
1.57      jmc      1157: .Xc
                   1158: .D1 (alias: Ic new )
                   1159: Create a new session with name
                   1160: .Ar session-name .
1.153     nicm     1161: .Pp
1.57      jmc      1162: The new session is attached to the current terminal unless
                   1163: .Fl d
                   1164: is given.
                   1165: .Ar window-name
1.1       nicm     1166: and
1.153     nicm     1167: .Ar shell-command
                   1168: are the name of and shell command to execute in the initial window.
1.552     nicm     1169: With
                   1170: .Fl d ,
1.642     nicm     1171: the initial size comes from the global
                   1172: .Ic default-size
                   1173: option;
1.210     nicm     1174: .Fl x
                   1175: and
                   1176: .Fl y
1.602     nicm     1177: can be used to specify a different size.
                   1178: .Ql -
                   1179: uses the size of the current client if any.
1.642     nicm     1180: If
                   1181: .Fl x
                   1182: or
                   1183: .Fl y
                   1184: is given, the
                   1185: .Ic default-size
                   1186: option is set for the session.
1.762     nicm     1187: .Fl f
                   1188: sets a comma-separated list of client flags (see
                   1189: .Ic attach-session ) .
1.68      nicm     1190: .Pp
                   1191: If run from a terminal, any
                   1192: .Xr termios 4
                   1193: special characters are saved and used for new windows in the new session.
1.338     nicm     1194: .Pp
                   1195: The
                   1196: .Fl A
                   1197: flag makes
                   1198: .Ic new-session
                   1199: behave like
                   1200: .Ic attach-session
                   1201: if
                   1202: .Ar session-name
1.416     nicm     1203: already exists; in this case,
1.338     nicm     1204: .Fl D
                   1205: behaves like
                   1206: .Fl d
1.662     nicm     1207: to
                   1208: .Ic attach-session ,
                   1209: and
                   1210: .Fl X
                   1211: behaves like
                   1212: .Fl x
1.338     nicm     1213: to
                   1214: .Ic attach-session .
1.101     nicm     1215: .Pp
                   1216: If
                   1217: .Fl t
1.536     nicm     1218: is given, it specifies a
                   1219: .Ic session group .
                   1220: Sessions in the same group share the same set of windows - new windows are
1.537     nicm     1221: linked to all sessions in the group and any windows closed removed from all
1.536     nicm     1222: sessions.
1.101     nicm     1223: The current and previous window and any session options remain independent and
1.536     nicm     1224: any session in a group may be killed without affecting the others.
                   1225: The
                   1226: .Ar group-name
                   1227: argument may be:
                   1228: .Bl -enum -width Ds
                   1229: .It
                   1230: the name of an existing group, in which case the new session is added to that
                   1231: group;
                   1232: .It
                   1233: the name of an existing session - the new session is added to the same group
                   1234: as that session, creating a new group if necessary;
                   1235: .It
                   1236: the name for a new group containing only the new session.
                   1237: .El
                   1238: .Pp
1.101     nicm     1239: .Fl n
1.480     nicm     1240: and
1.153     nicm     1241: .Ar shell-command
1.101     nicm     1242: are invalid if
                   1243: .Fl t
                   1244: is used.
1.351     nicm     1245: .Pp
                   1246: The
                   1247: .Fl P
                   1248: option prints information about the new session after it has been created.
                   1249: By default, it uses the format
1.683     nicm     1250: .Ql #{session_name}:\&
1.351     nicm     1251: but a different format may be specified with
                   1252: .Fl F .
1.436     nicm     1253: .Pp
                   1254: If
                   1255: .Fl E
1.480     nicm     1256: is used, the
1.436     nicm     1257: .Ic update-environment
                   1258: option will not be applied.
1.760     nicm     1259: .Fl e
                   1260: takes the form
                   1261: .Ql VARIABLE=value
                   1262: and sets an environment variable for the newly created session; it may be
                   1263: specified multiple times.
1.248     nicm     1264: .It Xo Ic refresh-client
1.613     nicm     1265: .Op Fl cDlLRSU
1.773     nicm     1266: .Op Fl A Ar pane:state
1.788     nicm     1267: .Op Fl B Ar name:what:format
1.677     nicm     1268: .Op Fl C Ar XxY
1.762     nicm     1269: .Op Fl f Ar flags
1.248     nicm     1270: .Op Fl t Ar target-client
1.613     nicm     1271: .Op Ar adjustment
1.248     nicm     1272: .Xc
1.57      jmc      1273: .D1 (alias: Ic refresh )
                   1274: Refresh the current client if bound to a key, or a single client if one is given
                   1275: with
                   1276: .Fl t .
1.248     nicm     1277: If
                   1278: .Fl S
1.538     nicm     1279: is specified, only update the client's status line.
1.535     nicm     1280: .Pp
1.642     nicm     1281: The
                   1282: .Fl U ,
                   1283: .Fl D ,
                   1284: .Fl L
                   1285: .Fl R ,
                   1286: and
                   1287: .Fl c
                   1288: flags allow the visible portion of a window which is larger than the client
                   1289: to be changed.
                   1290: .Fl U
                   1291: moves the visible part up by
                   1292: .Ar adjustment
                   1293: rows and
                   1294: .Fl D
                   1295: down,
                   1296: .Fl L
                   1297: left by
                   1298: .Ar adjustment
                   1299: columns and
                   1300: .Fl R
                   1301: right.
                   1302: .Fl c
                   1303: returns to tracking the cursor automatically.
                   1304: If
                   1305: .Ar adjustment
                   1306: is omitted, 1 is used.
                   1307: Note that the visible position is a property of the client not of the
                   1308: window, changing the current window in the attached session will reset
                   1309: it.
                   1310: .Pp
1.535     nicm     1311: .Fl C
1.773     nicm     1312: sets the width and height of a control mode client.
                   1313: .Fl A
1.778     nicm     1314: allows a control mode client to trigger actions on a pane.
1.773     nicm     1315: The argument is a pane ID (with leading
                   1316: .Ql % ) ,
                   1317: a colon, then one of
1.778     nicm     1318: .Ql on ,
1.781     nicm     1319: .Ql off ,
                   1320: .Ql continue
1.773     nicm     1321: or
1.781     nicm     1322: .Ql pause .
1.773     nicm     1323: If
                   1324: .Ql off ,
                   1325: .Nm
                   1326: will not send output from the pane to the client and if all clients have turned
                   1327: the pane off, will stop reading from the pane.
1.778     nicm     1328: If
                   1329: .Ql continue ,
                   1330: .Nm
1.781     nicm     1331: will return to sending output to the pane if it was paused (manually or with the
1.778     nicm     1332: .Ar pause-after
                   1333: flag).
1.781     nicm     1334: If
                   1335: .Ql pause ,
                   1336: .Nm
                   1337: will pause the pane.
1.773     nicm     1338: .Fl A
1.778     nicm     1339: may be given multiple times for different panes.
1.773     nicm     1340: .Pp
1.788     nicm     1341: .Fl B
                   1342: sets a subscription to a format for a control mode client.
                   1343: The argument is split into three items by colons:
                   1344: .Ar name
                   1345: is a name for the subscription;
                   1346: .Ar what
                   1347: is a type of item to subscribe to;
                   1348: .Ar format
                   1349: is the format.
                   1350: After a subscription is added, changes to the format are reported with the
                   1351: .Ic %subscription-changed
                   1352: notification, at most once a second.
                   1353: If only the name is given, the subscription is removed.
                   1354: .Ar what
                   1355: may be empty to check the format only for the attached session, or one of:
                   1356: a pane ID such as
                   1357: .Ql %0 ;
                   1358: .Ql %*
                   1359: for all panes in the attached session;
                   1360: an window ID such as
                   1361: .Ql @0 ;
                   1362: or
                   1363: .Ql @*
                   1364: for all windows in the attached session.
                   1365: .Pp
1.762     nicm     1366: .Fl f
                   1367: sets a comma-separated list of client flags, see
                   1368: .Ic attach-session .
1.677     nicm     1369: .Pp
1.612     nicm     1370: .Fl l
                   1371: requests the clipboard from the client using the
                   1372: .Xr xterm 1
                   1373: escape sequence and stores it in a new paste buffer.
1.613     nicm     1374: .Pp
                   1375: .Fl L ,
                   1376: .Fl R ,
                   1377: .Fl U
                   1378: and
                   1379: .Fl D
                   1380: move the visible portion of the window left, right, up or down
                   1381: by
                   1382: .Ar adjustment ,
                   1383: if the window is larger than the client.
                   1384: .Fl c
                   1385: resets so that the position follows the cursor.
                   1386: See the
                   1387: .Ic window-size
                   1388: option.
1.57      jmc      1389: .It Xo Ic rename-session
                   1390: .Op Fl t Ar target-session
                   1391: .Ar new-name
                   1392: .Xc
                   1393: .D1 (alias: Ic rename )
                   1394: Rename the session to
                   1395: .Ar new-name .
1.121     nicm     1396: .It Xo Ic show-messages
1.465     nicm     1397: .Op Fl JT
1.120     nicm     1398: .Op Fl t Ar target-client
                   1399: .Xc
                   1400: .D1 (alias: Ic showmsgs )
1.764     nicm     1401: Show server messages or information.
                   1402: Messages are stored, up to a maximum of the limit set by the
1.120     nicm     1403: .Ar message-limit
1.384     nicm     1404: server option.
1.377     nicm     1405: .Fl J
                   1406: and
                   1407: .Fl T
1.465     nicm     1408: show debugging information about jobs and terminals.
1.488     tim      1409: .It Xo Ic source-file
1.793     nicm     1410: .Op Fl Fnqv
1.488     tim      1411: .Ar path
1.659     nicm     1412: .Ar ...
1.488     tim      1413: .Xc
1.57      jmc      1414: .D1 (alias: Ic source )
1.659     nicm     1415: Execute commands from one or more files specified by
1.519     nicm     1416: .Ar path
1.659     nicm     1417: (which may be
1.607     kn       1418: .Xr glob 7
1.659     nicm     1419: patterns).
1.488     tim      1420: If
1.793     nicm     1421: .Fl F
                   1422: is present, then
                   1423: .Ar path
                   1424: is expanded as a format.
                   1425: If
1.488     tim      1426: .Fl q
                   1427: is given, no error will be returned if
                   1428: .Ar path
                   1429: does not exist.
1.651     nicm     1430: With
                   1431: .Fl n ,
                   1432: the file is parsed but no commands are executed.
1.663     nicm     1433: .Fl v
                   1434: shows the parsed commands and line numbers if possible.
1.57      jmc      1435: .It Ic start-server
                   1436: .D1 (alias: Ic start )
                   1437: Start the
1.1       nicm     1438: .Nm
1.57      jmc      1439: server, if not already running, without creating any sessions.
1.707     nicm     1440: .Pp
                   1441: Note that as by default the
                   1442: .Nm
                   1443: server will exit with no sessions, this is only useful if a session is created in
                   1444: .Pa ~/.tmux.conf ,
                   1445: .Ic exit-empty
                   1446: is turned off, or another command is run as part of the same command sequence.
                   1447: For example:
                   1448: .Bd -literal -offset indent
                   1449: $ tmux start \\; show -g
                   1450: .Ed
1.57      jmc      1451: .It Xo Ic suspend-client
1.202     nicm     1452: .Op Fl t Ar target-client
1.57      jmc      1453: .Xc
                   1454: .D1 (alias: Ic suspendc )
                   1455: Suspend a client by sending
                   1456: .Dv SIGTSTP
                   1457: (tty stop).
                   1458: .It Xo Ic switch-client
1.681     nicm     1459: .Op Fl ElnprZ
1.57      jmc      1460: .Op Fl c Ar target-client
                   1461: .Op Fl t Ar target-session
1.421     nicm     1462: .Op Fl T Ar key-table
1.57      jmc      1463: .Xc
                   1464: .D1 (alias: Ic switchc )
                   1465: Switch the current session for client
                   1466: .Ar target-client
                   1467: to
                   1468: .Ar target-session .
1.635     nicm     1469: As a special case,
                   1470: .Fl t
                   1471: may refer to a pane (a target that contains
1.636     jmc      1472: .Ql \&: ,
                   1473: .Ql \&.
1.635     nicm     1474: or
1.636     jmc      1475: .Ql % ) ,
1.681     nicm     1476: to change session, window and pane.
                   1477: In that case,
                   1478: .Fl Z
                   1479: keeps the window zoomed if it was zoomed.
1.183     nicm     1480: If
1.197     jmc      1481: .Fl l ,
1.183     nicm     1482: .Fl n
                   1483: or
                   1484: .Fl p
1.194     nicm     1485: is used, the client is moved to the last, next or previous session
                   1486: respectively.
1.242     nicm     1487: .Fl r
1.762     nicm     1488: toggles the client
                   1489: .Ic read-only
                   1490: and
                   1491: .Ic ignore-size
                   1492: flags (see the
1.242     nicm     1493: .Ic attach-session
                   1494: command).
1.436     nicm     1495: .Pp
                   1496: If
                   1497: .Fl E
                   1498: is used,
                   1499: .Ic update-environment
                   1500: option will not be applied.
1.421     nicm     1501: .Pp
                   1502: .Fl T
1.706     nicm     1503: sets the client's key table; the next key from the client will be interpreted
                   1504: from
1.421     nicm     1505: .Ar key-table .
                   1506: This may be used to configure multiple prefix keys, or to bind commands to
                   1507: sequences of keys.
                   1508: For example, to make typing
                   1509: .Ql abc
                   1510: run the
                   1511: .Ic list-keys
                   1512: command:
                   1513: .Bd -literal -offset indent
                   1514: bind-key -Ttable2 c list-keys
                   1515: bind-key -Ttable1 b switch-client -Ttable2
                   1516: bind-key -Troot   a switch-client -Ttable1
                   1517: .Ed
1.57      jmc      1518: .El
                   1519: .Sh WINDOWS AND PANES
1.679     nicm     1520: Each window displayed by
                   1521: .Nm
                   1522: may be split into one or more
                   1523: .Em panes ;
                   1524: each pane takes up a certain area of the display and is a separate terminal.
                   1525: A window may be split into panes using the
                   1526: .Ic split-window
                   1527: command.
                   1528: Windows may be split horizontally (with the
                   1529: .Fl h
                   1530: flag) or vertically.
                   1531: Panes may be resized with the
                   1532: .Ic resize-pane
                   1533: command (bound to
                   1534: .Ql C-Up ,
                   1535: .Ql C-Down
                   1536: .Ql C-Left
                   1537: and
                   1538: .Ql C-Right
                   1539: by default), the current pane may be changed with the
                   1540: .Ic select-pane
                   1541: command and the
                   1542: .Ic rotate-window
                   1543: and
                   1544: .Ic swap-pane
                   1545: commands may be used to swap panes without changing their position.
                   1546: Panes are numbered beginning from zero in the order they are created.
                   1547: .Pp
                   1548: By default, a
1.1       nicm     1549: .Nm
1.679     nicm     1550: pane permits direct access to the terminal contained in the pane.
                   1551: A pane may also be put into one of several modes:
                   1552: .Bl -dash -offset indent
                   1553: .It
                   1554: Copy mode, which permits a section of a window or its
1.164     nicm     1555: history to be copied to a
1.1       nicm     1556: .Em paste buffer
                   1557: for later insertion into another window.
                   1558: This mode is entered with the
                   1559: .Ic copy-mode
                   1560: command, bound to
1.113     nicm     1561: .Ql \&[
1.1       nicm     1562: by default.
1.734     nicm     1563: Copied text can be pasted with the
                   1564: .Ic paste-buffer
                   1565: command, bound to
                   1566: .Ql \&] .
1.679     nicm     1567: .It
                   1568: View mode, which is like copy mode but is entered when a command that produces
                   1569: output, such as
1.164     nicm     1570: .Ic list-keys ,
                   1571: is executed from a key binding.
1.679     nicm     1572: .It
                   1573: Choose mode, which allows an item to be chosen from a list.
                   1574: This may be a client, a session or window or pane, or a buffer.
                   1575: This mode is entered with the
                   1576: .Ic choose-buffer ,
                   1577: .Ic choose-client
                   1578: and
                   1579: .Ic choose-tree
                   1580: commands.
                   1581: .El
1.1       nicm     1582: .Pp
1.678     nicm     1583: In copy mode an indicator is displayed in the top-right corner of the pane with
                   1584: the current position and the number of lines in the history.
                   1585: .Pp
1.497     nicm     1586: Commands are sent to copy mode using the
                   1587: .Fl X
                   1588: flag to the
                   1589: .Ic send-keys
                   1590: command.
                   1591: When a key is pressed, copy mode automatically uses one of two key tables,
                   1592: depending on the
1.1       nicm     1593: .Ic mode-keys
1.497     nicm     1594: option:
                   1595: .Ic copy-mode
                   1596: for emacs, or
                   1597: .Ic copy-mode-vi
                   1598: for vi.
                   1599: Key tables may be viewed with the
                   1600: .Ic list-keys
                   1601: command.
                   1602: .Pp
                   1603: The following commands are supported in copy mode:
1.648     nicm     1604: .Bl -column "CommandXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" "viXXXXXXXXXX" "emacs" -offset indent
1.497     nicm     1605: .It Sy "Command" Ta Sy "vi" Ta Sy "emacs"
                   1606: .It Li "append-selection" Ta "" Ta ""
                   1607: .It Li "append-selection-and-cancel" Ta "A" Ta ""
                   1608: .It Li "back-to-indentation" Ta "^" Ta "M-m"
                   1609: .It Li "begin-selection" Ta "Space" Ta "C-Space"
                   1610: .It Li "bottom-line" Ta "L" Ta ""
                   1611: .It Li "cancel" Ta "q" Ta "Escape"
                   1612: .It Li "clear-selection" Ta "Escape" Ta "C-g"
1.633     nicm     1613: .It Li "copy-end-of-line [<prefix>]" Ta "D" Ta "C-k"
                   1614: .It Li "copy-line [<prefix>]" Ta "" Ta ""
1.742     nicm     1615: .It Li "copy-pipe [<command>] [<prefix>]" Ta "" Ta ""
                   1616: .It Li "copy-pipe-no-clear [<command>] [<prefix>]" Ta "" Ta ""
                   1617: .It Li "copy-pipe-and-cancel [<command>] [<prefix>]" Ta "" Ta ""
1.633     nicm     1618: .It Li "copy-selection [<prefix>]" Ta "" Ta ""
1.638     nicm     1619: .It Li "copy-selection-no-clear [<prefix>]" Ta "" Ta ""
1.633     nicm     1620: .It Li "copy-selection-and-cancel [<prefix>]" Ta "Enter" Ta "M-w"
1.497     nicm     1621: .It Li "cursor-down" Ta "j" Ta "Down"
1.685     nicm     1622: .It Li "cursor-down-and-cancel" Ta "" Ta ""
1.497     nicm     1623: .It Li "cursor-left" Ta "h" Ta "Left"
                   1624: .It Li "cursor-right" Ta "l" Ta "Right"
                   1625: .It Li "cursor-up" Ta "k" Ta "Up"
                   1626: .It Li "end-of-line" Ta "$" Ta "C-e"
                   1627: .It Li "goto-line <line>" Ta ":" Ta "g"
                   1628: .It Li "halfpage-down" Ta "C-d" Ta "M-Down"
1.589     nicm     1629: .It Li "halfpage-down-and-cancel" Ta "" Ta ""
1.497     nicm     1630: .It Li "halfpage-up" Ta "C-u" Ta "M-Up"
1.589     nicm     1631: .It Li "history-bottom" Ta "G" Ta "M->"
                   1632: .It Li "history-top" Ta "g" Ta "M-<"
1.497     nicm     1633: .It Li "jump-again" Ta ";" Ta ";"
                   1634: .It Li "jump-backward <to>" Ta "F" Ta "F"
                   1635: .It Li "jump-forward <to>" Ta "f" Ta "f"
                   1636: .It Li "jump-reverse" Ta "," Ta ","
                   1637: .It Li "jump-to-backward <to>" Ta "T" Ta ""
                   1638: .It Li "jump-to-forward <to>" Ta "t" Ta ""
1.768     nicm     1639: .It Li "jump-to-mark" Ta "M-x" Ta "M-x"
1.497     nicm     1640: .It Li "middle-line" Ta "M" Ta "M-r"
1.678     nicm     1641: .It Li "next-matching-bracket" Ta "%" Ta "M-C-f"
1.497     nicm     1642: .It Li "next-paragraph" Ta "}" Ta "M-}"
                   1643: .It Li "next-space" Ta "W" Ta ""
                   1644: .It Li "next-space-end" Ta "E" Ta ""
                   1645: .It Li "next-word" Ta "w" Ta ""
                   1646: .It Li "next-word-end" Ta "e" Ta "M-f"
                   1647: .It Li "other-end" Ta "o" Ta ""
                   1648: .It Li "page-down" Ta "C-f" Ta "PageDown"
1.589     nicm     1649: .It Li "page-down-and-cancel" Ta "" Ta ""
1.497     nicm     1650: .It Li "page-up" Ta "C-b" Ta "PageUp"
1.678     nicm     1651: .It Li "previous-matching-bracket" Ta "" Ta "M-C-b"
1.497     nicm     1652: .It Li "previous-paragraph" Ta "{" Ta "M-{"
                   1653: .It Li "previous-space" Ta "B" Ta ""
                   1654: .It Li "previous-word" Ta "b" Ta "M-b"
                   1655: .It Li "rectangle-toggle" Ta "v" Ta "R"
1.732     nicm     1656: .It Li "refresh-from-pane" Ta "r" Ta "r"
1.497     nicm     1657: .It Li "scroll-down" Ta "C-e" Ta "C-Down"
1.589     nicm     1658: .It Li "scroll-down-and-cancel" Ta "" Ta ""
1.497     nicm     1659: .It Li "scroll-up" Ta "C-y" Ta "C-Up"
                   1660: .It Li "search-again" Ta "n" Ta "n"
1.517     nicm     1661: .It Li "search-backward <for>" Ta "?" Ta ""
1.726     nicm     1662: .It Li "search-backward-incremental <for>" Ta "" Ta "C-r"
                   1663: .It Li "search-backward-text <for>" Ta "" Ta ""
1.517     nicm     1664: .It Li "search-forward <for>" Ta "/" Ta ""
                   1665: .It Li "search-forward-incremental <for>" Ta "" Ta "C-s"
1.726     nicm     1666: .It Li "search-forward-text <for>" Ta "" Ta ""
1.497     nicm     1667: .It Li "search-reverse" Ta "N" Ta "N"
                   1668: .It Li "select-line" Ta "V" Ta ""
1.634     nicm     1669: .It Li "select-word" Ta "" Ta ""
1.768     nicm     1670: .It Li "set-mark" Ta "X" Ta "X"
1.497     nicm     1671: .It Li "start-of-line" Ta "0" Ta "C-a"
1.515     nicm     1672: .It Li "stop-selection" Ta "" Ta ""
1.497     nicm     1673: .It Li "top-line" Ta "H" Ta "M-R"
1.1       nicm     1674: .El
1.726     nicm     1675: .Pp
                   1676: The search commands come in several varieties:
                   1677: .Ql search-forward
                   1678: and
                   1679: .Ql search-backward
                   1680: search for a regular expression;
                   1681: the
                   1682: .Ql -text
                   1683: variants search for a plain text string rather than a regular expression;
                   1684: .Ql -incremental
                   1685: perform an incremental search and expect to be used with the
                   1686: .Fl i
                   1687: flag to the
                   1688: .Ic command-prompt
                   1689: command.
                   1690: .Ql search-again
                   1691: repeats the last search and
                   1692: .Ql search-reverse
                   1693: does the same but reverses the direction (forward becomes backward and backward
                   1694: becomes forward).
1.589     nicm     1695: .Pp
1.633     nicm     1696: Copy commands may take an optional buffer prefix argument which is used
                   1697: to generate the buffer name (the default is
                   1698: .Ql buffer
                   1699: so buffers are named
                   1700: .Ql buffer0 ,
                   1701: .Ql buffer1
                   1702: and so on).
                   1703: Pipe commands take a command argument which is the command to which the
                   1704: copied text is piped.
1.589     nicm     1705: The
                   1706: .Ql -and-cancel
                   1707: variants of some commands exit copy mode after they have completed (for copy
                   1708: commands) or when the cursor reaches the bottom (for scrolling commands).
1.638     nicm     1709: .Ql -no-clear
                   1710: variants do not clear the selection.
1.146     nicm     1711: .Pp
                   1712: The next and previous word keys use space and the
                   1713: .Ql - ,
1.154     nicm     1714: .Ql _
1.146     nicm     1715: and
                   1716: .Ql @
1.154     nicm     1717: characters as word delimiters by default, but this can be adjusted by
                   1718: setting the
                   1719: .Em word-separators
1.255     nicm     1720: session option.
1.146     nicm     1721: Next word moves to the start of the next word, next word end to the end of the
                   1722: next word and previous word to the start of the previous word.
                   1723: The three next and previous space keys work similarly but use a space alone as
                   1724: the word separator.
1.157     nicm     1725: .Pp
                   1726: The jump commands enable quick movement within a line.
                   1727: For instance, typing
                   1728: .Ql f
                   1729: followed by
                   1730: .Ql /
                   1731: will move the cursor to the next
                   1732: .Ql /
                   1733: character on the current line.
                   1734: A
                   1735: .Ql \&;
                   1736: will then jump to the next occurrence.
1.1       nicm     1737: .Pp
1.155     nicm     1738: Commands in copy mode may be prefaced by an optional repeat count.
                   1739: With vi key bindings, a prefix is entered using the number keys; with
                   1740: emacs, the Alt (meta) key and a number begins prefix entry.
                   1741: .Pp
1.164     nicm     1742: The synopsis for the
                   1743: .Ic copy-mode
                   1744: command is:
1.57      jmc      1745: .Bl -tag -width Ds
                   1746: .It Xo Ic copy-mode
1.720     nicm     1747: .Op Fl eHMqu
1.735     nicm     1748: .Op Fl s Ar src-pane
1.72      nicm     1749: .Op Fl t Ar target-pane
1.57      jmc      1750: .Xc
                   1751: Enter copy mode.
                   1752: The
                   1753: .Fl u
                   1754: option scrolls one page up.
1.419     nicm     1755: .Fl M
                   1756: begins a mouse drag (only valid if bound to a mouse key binding, see
1.420     jmc      1757: .Sx MOUSE SUPPORT ) .
1.716     nicm     1758: .Fl H
                   1759: hides the position indicator in the top right.
1.720     nicm     1760: .Fl q
                   1761: cancels copy mode and any other modes.
1.735     nicm     1762: .Fl s
                   1763: copies from
                   1764: .Ar src-pane
                   1765: instead of
1.736     nicm     1766: .Ar target-pane .
1.716     nicm     1767: .Pp
1.450     nicm     1768: .Fl e
                   1769: specifies that scrolling to the bottom of the history (to the visible screen)
                   1770: should exit copy mode.
                   1771: While in copy mode, pressing a key other than those used for scrolling will
                   1772: disable this behaviour.
                   1773: This is intended to allow fast scrolling through a pane's history, for
                   1774: example with:
                   1775: .Bd -literal -offset indent
                   1776: bind PageUp copy-mode -eu
                   1777: .Ed
1.57      jmc      1778: .El
1.18      nicm     1779: .Pp
1.679     nicm     1780: A number of preset arrangements of panes are available, these are called layouts.
1.38      nicm     1781: These may be selected with the
                   1782: .Ic select-layout
                   1783: command or cycled with
                   1784: .Ic next-layout
                   1785: (bound to
1.149     nicm     1786: .Ql Space
1.131     nicm     1787: by default); once a layout is chosen, panes within it may be moved and resized
                   1788: as normal.
1.1       nicm     1789: .Pp
                   1790: The following layouts are supported:
                   1791: .Bl -tag -width Ds
                   1792: .It Ic even-horizontal
                   1793: Panes are spread out evenly from left to right across the window.
                   1794: .It Ic even-vertical
                   1795: Panes are spread evenly from top to bottom.
1.2       nicm     1796: .It Ic main-horizontal
1.131     nicm     1797: A large (main) pane is shown at the top of the window and the remaining panes
                   1798: are spread from left to right in the leftover space at the bottom.
1.2       nicm     1799: Use the
                   1800: .Em main-pane-height
                   1801: window option to specify the height of the top pane.
1.1       nicm     1802: .It Ic main-vertical
1.2       nicm     1803: Similar to
                   1804: .Ic main-horizontal
                   1805: but the large pane is placed on the left and the others spread from top to
                   1806: bottom along the right.
                   1807: See the
                   1808: .Em main-pane-width
                   1809: window option.
1.165     nicm     1810: .It Ic tiled
                   1811: Panes are spread out as evenly as possible over the window in both rows and
                   1812: columns.
1.1       nicm     1813: .El
1.8       nicm     1814: .Pp
1.181     nicm     1815: In addition,
                   1816: .Ic select-layout
                   1817: may be used to apply a previously used layout - the
                   1818: .Ic list-windows
                   1819: command displays the layout of each window in a form suitable for use with
                   1820: .Ic select-layout .
                   1821: For example:
                   1822: .Bd -literal -offset indent
                   1823: $ tmux list-windows
                   1824: 0: ksh [159x48]
                   1825:     layout: bb62,159x48,0,0{79x48,0,0,79x48,80,0}
                   1826: $ tmux select-layout bb62,159x48,0,0{79x48,0,0,79x48,80,0}
                   1827: .Ed
1.196     nicm     1828: .Pp
1.181     nicm     1829: .Nm
                   1830: automatically adjusts the size of the layout for the current window size.
                   1831: Note that a layout cannot be applied to a window with more panes than that
                   1832: from which the layout was originally defined.
                   1833: .Pp
1.57      jmc      1834: Commands related to windows and panes are as follows:
                   1835: .Bl -tag -width Ds
                   1836: .It Xo Ic break-pane
1.784     nicm     1837: .Op Fl abdP
1.280     nicm     1838: .Op Fl F Ar format
1.532     nicm     1839: .Op Fl n Ar window-name
1.440     nicm     1840: .Op Fl s Ar src-pane
1.480     nicm     1841: .Op Fl t Ar dst-window
1.57      jmc      1842: .Xc
                   1843: .D1 (alias: Ic breakp )
                   1844: Break
1.440     nicm     1845: .Ar src-pane
                   1846: off from its containing window to make it the only pane in
                   1847: .Ar dst-window .
1.749     nicm     1848: With
1.784     nicm     1849: .Fl a
                   1850: or
                   1851: .Fl b ,
                   1852: the window is moved to the next index after or before (existing windows are
                   1853: moved if necessary).
1.57      jmc      1854: If
                   1855: .Fl d
                   1856: is given, the new window does not become the current window.
1.280     nicm     1857: The
                   1858: .Fl P
                   1859: option prints information about the new window after it has been created.
                   1860: By default, it uses the format
1.798     nicm     1861: .Ql #{session_name}:#{window_index}.#{pane_index}
1.280     nicm     1862: but a different format may be specified with
                   1863: .Fl F .
1.128     nicm     1864: .It Xo Ic capture-pane
1.680     nicm     1865: .Op Fl aepPqCJN
1.392     nicm     1866: .Op Fl b Ar buffer-name
1.213     nicm     1867: .Op Fl E Ar end-line
                   1868: .Op Fl S Ar start-line
1.128     nicm     1869: .Op Fl t Ar target-pane
                   1870: .Xc
                   1871: .D1 (alias: Ic capturep )
1.322     nicm     1872: Capture the contents of a pane.
                   1873: If
                   1874: .Fl p
1.325     nicm     1875: is given, the output goes to stdout, otherwise to the buffer specified with
1.322     nicm     1876: .Fl b
                   1877: or a new buffer if omitted.
1.339     nicm     1878: If
                   1879: .Fl a
                   1880: is given, the alternate screen is used, and the history is not accessible.
1.340     nicm     1881: If no alternate screen exists, an error will be returned unless
                   1882: .Fl q
                   1883: is given.
1.326     nicm     1884: If
                   1885: .Fl e
1.328     nicm     1886: is given, the output includes escape sequences for text and background
                   1887: attributes.
                   1888: .Fl C
1.330     nicm     1889: also escapes non-printable characters as octal \exxx.
1.680     nicm     1890: .Fl N
                   1891: preserves trailing spaces at each line's end and
1.328     nicm     1892: .Fl J
1.680     nicm     1893: preserves trailing spaces and joins any wrapped lines.
1.346     nicm     1894: .Fl P
                   1895: captures only any output that the pane has received that is the beginning of an
                   1896: as-yet incomplete escape sequence.
1.213     nicm     1897: .Pp
                   1898: .Fl S
                   1899: and
                   1900: .Fl E
                   1901: specify the starting and ending line numbers, zero is the first line of the
                   1902: visible pane and negative numbers are lines in the history.
1.397     nicm     1903: .Ql -
                   1904: to
                   1905: .Fl S
                   1906: is the start of the history and to
                   1907: .Fl E
                   1908: the end of the visible pane.
1.213     nicm     1909: The default is to capture only the visible contents of the pane.
1.76      nicm     1910: .It Xo
                   1911: .Ic choose-client
1.682     nicm     1912: .Op Fl NrZ
1.572     nicm     1913: .Op Fl F Ar format
1.562     nicm     1914: .Op Fl f Ar filter
1.561     nicm     1915: .Op Fl O Ar sort-order
1.555     nicm     1916: .Op Fl t Ar target-pane
1.76      nicm     1917: .Op Ar template
                   1918: .Xc
1.555     nicm     1919: Put a pane into client mode, allowing a client to be selected interactively from
                   1920: a list.
1.593     nicm     1921: .Fl Z
                   1922: zooms the pane.
1.555     nicm     1923: The following keys may be used in client mode:
                   1924: .Bl -column "Key" "Function" -offset indent
                   1925: .It Sy "Key" Ta Sy "Function"
                   1926: .It Li "Enter" Ta "Choose selected client"
                   1927: .It Li "Up" Ta "Select previous client"
                   1928: .It Li "Down" Ta "Select next client"
1.559     nicm     1929: .It Li "C-s" Ta "Search by name"
                   1930: .It Li "n" Ta "Repeat last search"
1.555     nicm     1931: .It Li "t" Ta "Toggle if client is tagged"
                   1932: .It Li "T" Ta "Tag no clients"
                   1933: .It Li "C-t" Ta "Tag all clients"
                   1934: .It Li "d" Ta "Detach selected client"
                   1935: .It Li "D" Ta "Detach tagged clients"
                   1936: .It Li "x" Ta "Detach and HUP selected client"
                   1937: .It Li "X" Ta "Detach and HUP tagged clients"
                   1938: .It Li "z" Ta "Suspend selected client"
                   1939: .It Li "Z" Ta "Suspend tagged clients"
1.562     nicm     1940: .It Li "f" Ta "Enter a format to filter items"
1.682     nicm     1941: .It Li "O" Ta "Change sort field"
                   1942: .It Li "r" Ta "Reverse sort order"
1.576     nicm     1943: .It Li "v" Ta "Toggle preview"
1.555     nicm     1944: .It Li "q" Ta "Exit mode"
                   1945: .El
                   1946: .Pp
1.76      nicm     1947: After a client is chosen,
                   1948: .Ql %%
1.555     nicm     1949: is replaced by the client name in
1.76      nicm     1950: .Ar template
                   1951: and the result executed as a command.
                   1952: If
                   1953: .Ar template
                   1954: is not given, "detach-client -t '%%'" is used.
1.555     nicm     1955: .Pp
1.561     nicm     1956: .Fl O
1.682     nicm     1957: specifies the initial sort field: one of
1.561     nicm     1958: .Ql name ,
                   1959: .Ql size ,
                   1960: .Ql creation ,
                   1961: or
                   1962: .Ql activity .
1.682     nicm     1963: .Fl r
                   1964: reverses the sort order.
1.562     nicm     1965: .Fl f
1.579     nicm     1966: specifies an initial filter: the filter is a format - if it evaluates to zero,
                   1967: the item in the list is not shown, otherwise it is shown.
                   1968: If a filter would lead to an empty list, it is ignored.
1.572     nicm     1969: .Fl F
                   1970: specifies the format for each item in the list.
1.576     nicm     1971: .Fl N
                   1972: starts without the preview.
1.314     nicm     1973: This command works only if at least one client is attached.
1.76      nicm     1974: .It Xo
1.555     nicm     1975: .Ic choose-tree
1.682     nicm     1976: .Op Fl GNrswZ
1.572     nicm     1977: .Op Fl F Ar format
1.562     nicm     1978: .Op Fl f Ar filter
1.561     nicm     1979: .Op Fl O Ar sort-order
1.555     nicm     1980: .Op Fl t Ar target-pane
1.76      nicm     1981: .Op Ar template
                   1982: .Xc
1.555     nicm     1983: Put a pane into tree mode, where a session, window or pane may be chosen
1.76      nicm     1984: interactively from a list.
1.298     nicm     1985: .Fl s
1.555     nicm     1986: starts with sessions collapsed and
1.298     nicm     1987: .Fl w
1.555     nicm     1988: with windows collapsed.
1.593     nicm     1989: .Fl Z
                   1990: zooms the pane.
1.555     nicm     1991: The following keys may be used in tree mode:
                   1992: .Bl -column "Key" "Function" -offset indent
                   1993: .It Sy "Key" Ta Sy "Function"
                   1994: .It Li "Enter" Ta "Choose selected item"
                   1995: .It Li "Up" Ta "Select previous item"
                   1996: .It Li "Down" Ta "Select next item"
1.763     nicm     1997: .It Li "+" Ta "Expand selected item"
                   1998: .It Li "-" Ta "Collapse selected item"
                   1999: .It Li "M-+" Ta "Expand all items"
                   2000: .It Li "M--" Ta "Collapse all items"
1.594     nicm     2001: .It Li "x" Ta "Kill selected item"
                   2002: .It Li "X" Ta "Kill tagged items"
1.566     nicm     2003: .It Li "<" Ta "Scroll list of previews left"
                   2004: .It Li ">" Ta "Scroll list of previews right"
1.559     nicm     2005: .It Li "C-s" Ta "Search by name"
1.749     nicm     2006: .It Li "m" Ta "Set the marked pane"
                   2007: .It Li "M" Ta "Clear the marked pane"
1.559     nicm     2008: .It Li "n" Ta "Repeat last search"
1.555     nicm     2009: .It Li "t" Ta "Toggle if item is tagged"
                   2010: .It Li "T" Ta "Tag no items"
                   2011: .It Li "C-t" Ta "Tag all items"
1.557     nicm     2012: .It Li "\&:" Ta "Run a command for each tagged item"
1.555     nicm     2013: .It Li "f" Ta "Enter a format to filter items"
1.749     nicm     2014: .It Li "H" Ta "Jump to the starting pane"
1.682     nicm     2015: .It Li "O" Ta "Change sort field"
                   2016: .It Li "r" Ta "Reverse sort order"
1.576     nicm     2017: .It Li "v" Ta "Toggle preview"
1.555     nicm     2018: .It Li "q" Ta "Exit mode"
                   2019: .El
1.320     nicm     2020: .Pp
1.555     nicm     2021: After a session, window or pane is chosen,
1.76      nicm     2022: .Ql %%
1.555     nicm     2023: is replaced by the target in
1.76      nicm     2024: .Ar template
                   2025: and the result executed as a command.
                   2026: If
                   2027: .Ar template
1.555     nicm     2028: is not given, "switch-client -t '%%'" is used.
                   2029: .Pp
1.561     nicm     2030: .Fl O
1.682     nicm     2031: specifies the initial sort field: one of
1.561     nicm     2032: .Ql index ,
                   2033: .Ql name ,
                   2034: or
                   2035: .Ql time .
1.682     nicm     2036: .Fl r
                   2037: reverses the sort order.
1.562     nicm     2038: .Fl f
1.579     nicm     2039: specifies an initial filter: the filter is a format - if it evaluates to zero,
                   2040: the item in the list is not shown, otherwise it is shown.
                   2041: If a filter would lead to an empty list, it is ignored.
1.572     nicm     2042: .Fl F
                   2043: specifies the format for each item in the tree.
1.576     nicm     2044: .Fl N
                   2045: starts without the preview.
1.586     nicm     2046: .Fl G
                   2047: includes all sessions in any session groups in the tree rather than only the
                   2048: first.
1.766     nicm     2049: This command works only if at least one client is attached.
                   2050: .It Xo
                   2051: .Ic customize-mode
                   2052: .Op Fl NZ
                   2053: .Op Fl F Ar format
                   2054: .Op Fl f Ar filter
                   2055: .Op Fl t Ar target-pane
                   2056: .Op Ar template
                   2057: .Xc
                   2058: Put a pane into customize mode, where options and key bindings may be browsed
                   2059: and modified from a list.
                   2060: Option values in the list are shown for the active pane in the current window.
                   2061: .Fl Z
                   2062: zooms the pane.
                   2063: The following keys may be used in customize mode:
                   2064: .Bl -column "Key" "Function" -offset indent
                   2065: .It Sy "Key" Ta Sy "Function"
                   2066: .It Li "Enter" Ta "Set pane, window, session or global option value"
                   2067: .It Li "Up" Ta "Select previous item"
                   2068: .It Li "Down" Ta "Select next item"
                   2069: .It Li "+" Ta "Expand selected item"
                   2070: .It Li "-" Ta "Collapse selected item"
                   2071: .It Li "M-+" Ta "Expand all items"
                   2072: .It Li "M--" Ta "Collapse all items"
                   2073: .It Li "s" Ta "Set option value or key attribute"
                   2074: .It Li "S" Ta "Set global option value"
                   2075: .It Li "w" Ta "Set window option value, if option is for pane and window"
1.785     nicm     2076: .It Li "d" Ta "Set an option or key to the default"
                   2077: .It Li "D" Ta "Set tagged options and tagged keys to the default"
1.766     nicm     2078: .It Li "u" Ta "Unset an option (set to default value if global) or unbind a key"
                   2079: .It Li "U" Ta "Unset tagged options and unbind tagged keys"
                   2080: .It Li "C-s" Ta "Search by name"
                   2081: .It Li "n" Ta "Repeat last search"
                   2082: .It Li "t" Ta "Toggle if item is tagged"
                   2083: .It Li "T" Ta "Tag no items"
                   2084: .It Li "C-t" Ta "Tag all items"
                   2085: .It Li "f" Ta "Enter a format to filter items"
                   2086: .It Li "v" Ta "Toggle option information"
                   2087: .It Li "q" Ta "Exit mode"
                   2088: .El
                   2089: .Pp
                   2090: .Fl f
                   2091: specifies an initial filter: the filter is a format - if it evaluates to zero,
                   2092: the item in the list is not shown, otherwise it is shown.
                   2093: If a filter would lead to an empty list, it is ignored.
                   2094: .Fl F
                   2095: specifies the format for each item in the tree.
                   2096: .Fl N
                   2097: starts without the option information.
1.314     nicm     2098: This command works only if at least one client is attached.
1.491     nicm     2099: .It Xo
                   2100: .Ic display-panes
1.804     nicm     2101: .Op Fl bN
1.573     nicm     2102: .Op Fl d Ar duration
1.491     nicm     2103: .Op Fl t Ar target-client
                   2104: .Op Ar template
                   2105: .Xc
1.398     nicm     2106: .D1 (alias: Ic displayp )
1.78      nicm     2107: Display a visible indicator of each pane shown by
                   2108: .Ar target-client .
                   2109: See the
1.573     nicm     2110: .Ic display-panes-colour
1.78      nicm     2111: and
1.145     nicm     2112: .Ic display-panes-active-colour
1.78      nicm     2113: session options.
1.804     nicm     2114: The indicator is closed when a key is pressed (unless
1.805     nicm     2115: .Fl N
                   2116: is given) or
1.573     nicm     2117: .Ar duration
                   2118: milliseconds have passed.
                   2119: If
                   2120: .Fl d
                   2121: is not given,
                   2122: .Ic display-panes-time
                   2123: is used.
                   2124: A duration of zero means the indicator stays until a key is pressed.
1.491     nicm     2125: While the indicator is on screen, a pane may be chosen with the
1.84      nicm     2126: .Ql 0
                   2127: to
                   2128: .Ql 9
1.491     nicm     2129: keys, which will cause
                   2130: .Ar template
                   2131: to be executed as a command with
                   2132: .Ql %%
                   2133: substituted by the pane ID.
                   2134: The default
                   2135: .Ar template
                   2136: is "select-pane -t '%%'".
1.616     nicm     2137: With
                   2138: .Fl b ,
                   2139: other commands are not blocked from running until the indicator is closed.
1.57      jmc      2140: .It Xo Ic find-window
1.775     nicm     2141: .Op Fl iCNrTZ
1.555     nicm     2142: .Op Fl t Ar target-pane
1.57      jmc      2143: .Ar match-string
                   2144: .Xc
                   2145: .D1 (alias: Ic findw )
1.670     nicm     2146: Search for a
1.57      jmc      2147: .Xr fnmatch 3
1.670     nicm     2148: pattern or, with
                   2149: .Fl r ,
                   2150: regular expression
1.57      jmc      2151: .Ar match-string
                   2152: in window names, titles, and visible content (but not history).
1.285     nicm     2153: The flags control matching behavior:
                   2154: .Fl C
                   2155: matches only visible window contents,
                   2156: .Fl N
                   2157: matches only the window name and
                   2158: .Fl T
                   2159: matches only the window title.
1.775     nicm     2160: .Fl i
                   2161: makes the search ignore case.
1.285     nicm     2162: The default is
                   2163: .Fl CNT .
1.608     nicm     2164: .Fl Z
                   2165: zooms the pane.
1.555     nicm     2166: .Pp
1.314     nicm     2167: This command works only if at least one client is attached.
1.137     nicm     2168: .It Xo Ic join-pane
1.697     nicm     2169: .Op Fl bdfhv
1.690     nicm     2170: .Op Fl l Ar size
1.137     nicm     2171: .Op Fl s Ar src-pane
                   2172: .Op Fl t Ar dst-pane
                   2173: .Xc
                   2174: .D1 (alias: Ic joinp )
                   2175: Like
                   2176: .Ic split-window ,
                   2177: but instead of splitting
                   2178: .Ar dst-pane
                   2179: and creating a new pane, split it and move
                   2180: .Ar src-pane
                   2181: into the space.
                   2182: This can be used to reverse
                   2183: .Ic break-pane .
1.277     nicm     2184: The
                   2185: .Fl b
                   2186: option causes
                   2187: .Ar src-pane
                   2188: to be joined to left of or above
                   2189: .Ar dst-pane .
1.432     nicm     2190: .Pp
                   2191: If
                   2192: .Fl s
                   2193: is omitted and a marked pane is present (see
                   2194: .Ic select-pane
                   2195: .Fl m ) ,
                   2196: the marked pane is used rather than the current pane.
1.112     nicm     2197: .It Xo Ic kill-pane
                   2198: .Op Fl a
                   2199: .Op Fl t Ar target-pane
                   2200: .Xc
1.57      jmc      2201: .D1 (alias: Ic killp )
                   2202: Destroy the given pane.
                   2203: If no panes remain in the containing window, it is also destroyed.
1.112     nicm     2204: The
                   2205: .Fl a
                   2206: option kills all but the pane given with
                   2207: .Fl t .
1.289     nicm     2208: .It Xo Ic kill-window
                   2209: .Op Fl a
                   2210: .Op Fl t Ar target-window
                   2211: .Xc
1.57      jmc      2212: .D1 (alias: Ic killw )
                   2213: Kill the current window or the window at
                   2214: .Ar target-window ,
1.1       nicm     2215: removing it from any sessions to which it is linked.
1.289     nicm     2216: The
                   2217: .Fl a
                   2218: option kills all but the window given with
                   2219: .Fl t .
1.398     nicm     2220: .It Xo Ic last-pane
1.681     nicm     2221: .Op Fl deZ
1.398     nicm     2222: .Op Fl t Ar target-window
                   2223: .Xc
1.187     nicm     2224: .D1 (alias: Ic lastp )
                   2225: Select the last (previously selected) pane.
1.681     nicm     2226: .Fl Z
                   2227: keeps the window zoomed if it was zoomed.
1.398     nicm     2228: .Fl e
                   2229: enables or
                   2230: .Fl d
                   2231: disables input to the pane.
1.56      jmc      2232: .It Ic last-window Op Fl t Ar target-session
1.1       nicm     2233: .D1 (alias: Ic last )
                   2234: Select the last (previously selected) window.
                   2235: If no
                   2236: .Ar target-session
                   2237: is specified, select the last window of the current session.
                   2238: .It Xo Ic link-window
1.784     nicm     2239: .Op Fl abdk
1.1       nicm     2240: .Op Fl s Ar src-window
                   2241: .Op Fl t Ar dst-window
                   2242: .Xc
                   2243: .D1 (alias: Ic linkw )
                   2244: Link the window at
                   2245: .Ar src-window
                   2246: to the specified
                   2247: .Ar dst-window .
                   2248: If
                   2249: .Ar dst-window
                   2250: is specified and no such window exists, the
                   2251: .Ar src-window
                   2252: is linked there.
1.439     nicm     2253: With
1.784     nicm     2254: .Fl a
                   2255: or
                   2256: .Fl b
                   2257: the window is moved to the next index after or before
                   2258: .Ar dst-window
                   2259: (existing windows are moved if necessary).
1.1       nicm     2260: If
                   2261: .Fl k
                   2262: is given and
                   2263: .Ar dst-window
                   2264: exists, it is killed, otherwise an error is generated.
                   2265: If
                   2266: .Fl d
                   2267: is given, the newly linked window is not selected.
1.214     nicm     2268: .It Xo Ic list-panes
                   2269: .Op Fl as
1.245     nicm     2270: .Op Fl F Ar format
1.738     nicm     2271: .Op Fl f Ar filter
1.214     nicm     2272: .Op Fl t Ar target
                   2273: .Xc
1.104     nicm     2274: .D1 (alias: Ic lsp )
1.214     nicm     2275: If
                   2276: .Fl a
                   2277: is given,
                   2278: .Ar target
                   2279: is ignored and all panes on the server are listed.
                   2280: If
                   2281: .Fl s
                   2282: is given,
                   2283: .Ar target
                   2284: is a session (or the current session).
                   2285: If neither is given,
                   2286: .Ar target
                   2287: is a window (or the current window).
1.247     nicm     2288: .Fl F
1.738     nicm     2289: specifies the format of each line and
                   2290: .Fl f
                   2291: a filter.
                   2292: Only panes for which the filter is true are shown.
                   2293: See the
1.247     nicm     2294: .Sx FORMATS
                   2295: section.
1.214     nicm     2296: .It Xo Ic list-windows
                   2297: .Op Fl a
1.245     nicm     2298: .Op Fl F Ar format
1.738     nicm     2299: .Op Fl f Ar filter
1.214     nicm     2300: .Op Fl t Ar target-session
                   2301: .Xc
1.1       nicm     2302: .D1 (alias: Ic lsw )
1.214     nicm     2303: If
                   2304: .Fl a
                   2305: is given, list all windows on the server.
                   2306: Otherwise, list windows in the current session or in
1.1       nicm     2307: .Ar target-session .
1.245     nicm     2308: .Fl F
1.738     nicm     2309: specifies the format of each line and
                   2310: .Fl f
                   2311: a filter.
                   2312: Only windows for which the filter is true are shown.
                   2313: See the
1.245     nicm     2314: .Sx FORMATS
                   2315: section.
1.277     nicm     2316: .It Xo Ic move-pane
1.749     nicm     2317: .Op Fl bdfhv
1.690     nicm     2318: .Op Fl l Ar size
1.277     nicm     2319: .Op Fl s Ar src-pane
                   2320: .Op Fl t Ar dst-pane
                   2321: .Xc
                   2322: .D1 (alias: Ic movep )
1.749     nicm     2323: Does the same as
                   2324: .Ic join-pane .
1.1       nicm     2325: .It Xo Ic move-window
1.784     nicm     2326: .Op Fl abrdk
1.1       nicm     2327: .Op Fl s Ar src-window
                   2328: .Op Fl t Ar dst-window
                   2329: .Xc
                   2330: .D1 (alias: Ic movew )
                   2331: This is similar to
                   2332: .Ic link-window ,
                   2333: except the window at
                   2334: .Ar src-window
                   2335: is moved to
                   2336: .Ar dst-window .
1.291     nicm     2337: With
                   2338: .Fl r ,
                   2339: all windows in the session are renumbered in sequential order, respecting
                   2340: the
                   2341: .Ic base-index
                   2342: option.
1.1       nicm     2343: .It Xo Ic new-window
1.784     nicm     2344: .Op Fl abdkP
1.272     nicm     2345: .Op Fl c Ar start-directory
1.641     nicm     2346: .Op Fl e Ar environment
1.351     nicm     2347: .Op Fl F Ar format
1.1       nicm     2348: .Op Fl n Ar window-name
                   2349: .Op Fl t Ar target-window
1.153     nicm     2350: .Op Ar shell-command
1.1       nicm     2351: .Xc
                   2352: .D1 (alias: Ic neww )
                   2353: Create a new window.
1.160     nicm     2354: With
1.784     nicm     2355: .Fl a
                   2356: or
                   2357: .Fl b ,
                   2358: the new window is inserted at the next index after or before the specified
1.160     nicm     2359: .Ar target-window ,
1.784     nicm     2360: moving windows up if necessary;
1.160     nicm     2361: otherwise
                   2362: .Ar target-window
                   2363: is the new window location.
                   2364: .Pp
1.1       nicm     2365: If
                   2366: .Fl d
                   2367: is given, the session does not make the new window the current window.
                   2368: .Ar target-window
1.28      nicm     2369: represents the window to be created; if the target already exists an error is
                   2370: shown, unless the
                   2371: .Fl k
                   2372: flag is used, in which case it is destroyed.
1.153     nicm     2373: .Ar shell-command
1.1       nicm     2374: is the command to execute.
                   2375: If
1.153     nicm     2376: .Ar shell-command
                   2377: is not specified, the value of the
                   2378: .Ic default-command
                   2379: option is used.
1.272     nicm     2380: .Fl c
                   2381: specifies the working directory in which the new window is created.
1.153     nicm     2382: .Pp
                   2383: When the shell command completes, the window closes.
                   2384: See the
                   2385: .Ic remain-on-exit
                   2386: option to change this behaviour.
1.1       nicm     2387: .Pp
1.641     nicm     2388: .Fl e
                   2389: takes the form
                   2390: .Ql VARIABLE=value
                   2391: and sets an environment variable for the newly created window; it may be
                   2392: specified multiple times.
                   2393: .Pp
1.1       nicm     2394: The
                   2395: .Ev TERM
                   2396: environment variable must be set to
1.523     nicm     2397: .Ql screen
                   2398: or
                   2399: .Ql tmux
1.1       nicm     2400: for all programs running
                   2401: .Em inside
                   2402: .Nm .
                   2403: New windows will automatically have
1.523     nicm     2404: .Ql TERM=screen
1.1       nicm     2405: added to their environment, but care must be taken not to reset this in shell
1.641     nicm     2406: start-up files or by the
                   2407: .Fl e
                   2408: option.
1.201     nicm     2409: .Pp
                   2410: The
                   2411: .Fl P
1.279     nicm     2412: option prints information about the new window after it has been created.
                   2413: By default, it uses the format
                   2414: .Ql #{session_name}:#{window_index}
                   2415: but a different format may be specified with
                   2416: .Fl F .
1.56      jmc      2417: .It Ic next-layout Op Fl t Ar target-window
1.1       nicm     2418: .D1 (alias: Ic nextl )
                   2419: Move a window to the next layout and rearrange the panes to fit.
                   2420: .It Xo Ic next-window
1.9       nicm     2421: .Op Fl a
1.1       nicm     2422: .Op Fl t Ar target-session
                   2423: .Xc
                   2424: .D1 (alias: Ic next )
                   2425: Move to the next window in the session.
1.9       nicm     2426: If
1.12      jmc      2427: .Fl a
1.295     nicm     2428: is used, move to the next window with an alert.
1.107     nicm     2429: .It Xo Ic pipe-pane
1.591     nicm     2430: .Op Fl IOo
1.107     nicm     2431: .Op Fl t Ar target-pane
1.153     nicm     2432: .Op Ar shell-command
1.107     nicm     2433: .Xc
                   2434: .D1 (alias: Ic pipep )
1.591     nicm     2435: Pipe output sent by the program in
1.107     nicm     2436: .Ar target-pane
1.591     nicm     2437: to a shell command or vice versa.
                   2438: A pane may only be connected to one command at a time, any existing pipe is
1.107     nicm     2439: closed before
1.153     nicm     2440: .Ar shell-command
1.107     nicm     2441: is executed.
1.174     nicm     2442: The
                   2443: .Ar shell-command
                   2444: string may contain the special character sequences supported by the
                   2445: .Ic status-left
1.231     nicm     2446: option.
1.107     nicm     2447: If no
1.153     nicm     2448: .Ar shell-command
1.107     nicm     2449: is given, the current pipe (if any) is closed.
1.591     nicm     2450: .Pp
                   2451: .Fl I
                   2452: and
                   2453: .Fl O
                   2454: specify which of the
                   2455: .Ar shell-command
                   2456: output streams are connected to the pane:
                   2457: with
                   2458: .Fl I
                   2459: stdout is connected (so anything
                   2460: .Ar shell-command
                   2461: prints is written to the pane as if it were typed);
                   2462: with
                   2463: .Fl O
                   2464: stdin is connected (so any output in the pane is piped to
                   2465: .Ar shell-command ) .
                   2466: Both may be used together and if neither are specified,
                   2467: .Fl O
                   2468: is used.
1.107     nicm     2469: .Pp
                   2470: The
                   2471: .Fl o
                   2472: option only opens a new pipe if no previous pipe exists, allowing a pipe to
                   2473: be toggled with a single key, for example:
                   2474: .Bd -literal -offset indent
1.174     nicm     2475: bind-key C-p pipe-pane -o 'cat >>~/output.#I-#P'
1.107     nicm     2476: .Ed
1.176     nicm     2477: .It Xo Ic previous-layout
                   2478: .Op Fl t Ar target-window
                   2479: .Xc
                   2480: .D1 (alias: Ic prevl )
                   2481: Move to the previous layout in the session.
1.1       nicm     2482: .It Xo Ic previous-window
1.9       nicm     2483: .Op Fl a
1.1       nicm     2484: .Op Fl t Ar target-session
                   2485: .Xc
                   2486: .D1 (alias: Ic prev )
                   2487: Move to the previous window in the session.
1.9       nicm     2488: With
                   2489: .Fl a ,
1.295     nicm     2490: move to the previous window with an alert.
1.1       nicm     2491: .It Xo Ic rename-window
                   2492: .Op Fl t Ar target-window
                   2493: .Ar new-name
                   2494: .Xc
                   2495: .D1 (alias: Ic renamew )
                   2496: Rename the current window, or the window at
                   2497: .Ar target-window
                   2498: if specified, to
                   2499: .Ar new-name .
                   2500: .It Xo Ic resize-pane
1.727     nicm     2501: .Op Fl DLMRTUZ
1.52      nicm     2502: .Op Fl t Ar target-pane
1.324     nicm     2503: .Op Fl x Ar width
                   2504: .Op Fl y Ar height
1.1       nicm     2505: .Op Ar adjustment
                   2506: .Xc
                   2507: .D1 (alias: Ic resizep )
1.324     nicm     2508: Resize a pane, up, down, left or right by
                   2509: .Ar adjustment
                   2510: with
                   2511: .Fl U ,
1.57      jmc      2512: .Fl D ,
                   2513: .Fl L
1.324     nicm     2514: or
                   2515: .Fl R ,
                   2516: or
                   2517: to an absolute size
                   2518: with
                   2519: .Fl x
                   2520: or
                   2521: .Fl y .
1.57      jmc      2522: The
                   2523: .Ar adjustment
1.690     nicm     2524: is given in lines or columns (the default is 1);
                   2525: .Fl x
                   2526: and
                   2527: .Fl y
                   2528: may be a given as a number of lines or columns or followed by
                   2529: .Ql %
                   2530: for a percentage of the window size (for example
                   2531: .Ql -x 10% ) .
1.337     nicm     2532: With
                   2533: .Fl Z ,
1.349     nicm     2534: the active pane is toggled between zoomed (occupying the whole of the window)
                   2535: and unzoomed (its normal position in the layout).
1.419     nicm     2536: .Pp
                   2537: .Fl M
                   2538: begins mouse resizing (only valid if bound to a mouse key binding, see
1.420     jmc      2539: .Sx MOUSE SUPPORT ) .
1.729     nicm     2540: .Pp
                   2541: .Fl T
1.727     nicm     2542: trims all lines below the current cursor position and moves lines out of the
                   2543: history to replace them.
1.629     nicm     2544: .It Xo Ic resize-window
                   2545: .Op Fl aADLRU
                   2546: .Op Fl t Ar target-window
                   2547: .Op Fl x Ar width
                   2548: .Op Fl y Ar height
                   2549: .Op Ar adjustment
                   2550: .Xc
                   2551: .D1 (alias: Ic resizew )
                   2552: Resize a window, up, down, left or right by
                   2553: .Ar adjustment
                   2554: with
                   2555: .Fl U ,
                   2556: .Fl D ,
                   2557: .Fl L
                   2558: or
                   2559: .Fl R ,
                   2560: or
                   2561: to an absolute size
                   2562: with
                   2563: .Fl x
                   2564: or
                   2565: .Fl y .
                   2566: The
                   2567: .Ar adjustment
                   2568: is given in lines or cells (the default is 1).
                   2569: .Fl A
                   2570: sets the size of the largest session containing the window;
                   2571: .Fl a
                   2572: the size of the smallest.
                   2573: This command will automatically set
                   2574: .Ic window-size
                   2575: to manual in the window options.
1.234     nicm     2576: .It Xo Ic respawn-pane
1.641     nicm     2577: .Op Fl k
1.568     nicm     2578: .Op Fl c Ar start-directory
1.641     nicm     2579: .Op Fl e Ar environment
1.234     nicm     2580: .Op Fl t Ar target-pane
                   2581: .Op Ar shell-command
                   2582: .Xc
                   2583: .D1 (alias: Ic respawnp )
                   2584: Reactivate a pane in which the command has exited (see the
                   2585: .Ic remain-on-exit
                   2586: window option).
                   2587: If
                   2588: .Ar shell-command
1.777     nicm     2589: is not given, the command used when the pane was created or last respawned is
                   2590: executed.
1.234     nicm     2591: The pane must be already inactive, unless
                   2592: .Fl k
                   2593: is given, in which case any existing command is killed.
1.568     nicm     2594: .Fl c
                   2595: specifies a new working directory for the pane.
1.641     nicm     2596: The
                   2597: .Fl e
                   2598: option has the same meaning as for the
                   2599: .Ic new-window
                   2600: command.
1.57      jmc      2601: .It Xo Ic respawn-window
1.641     nicm     2602: .Op Fl k
1.568     nicm     2603: .Op Fl c Ar start-directory
1.641     nicm     2604: .Op Fl e Ar environment
1.57      jmc      2605: .Op Fl t Ar target-window
1.153     nicm     2606: .Op Ar shell-command
1.57      jmc      2607: .Xc
                   2608: .D1 (alias: Ic respawnw )
1.153     nicm     2609: Reactivate a window in which the command has exited (see the
1.57      jmc      2610: .Ic remain-on-exit
                   2611: window option).
                   2612: If
1.153     nicm     2613: .Ar shell-command
1.777     nicm     2614: is not given, the command used when the window was created or last respawned is
                   2615: executed.
1.57      jmc      2616: The window must be already inactive, unless
                   2617: .Fl k
                   2618: is given, in which case any existing command is killed.
1.568     nicm     2619: .Fl c
                   2620: specifies a new working directory for the window.
1.641     nicm     2621: The
                   2622: .Fl e
                   2623: option has the same meaning as for the
                   2624: .Ic new-window
                   2625: command.
1.57      jmc      2626: .It Xo Ic rotate-window
1.681     nicm     2627: .Op Fl DUZ
1.57      jmc      2628: .Op Fl t Ar target-window
                   2629: .Xc
                   2630: .D1 (alias: Ic rotatew )
                   2631: Rotate the positions of the panes within a window, either upward (numerically
                   2632: lower) with
                   2633: .Fl U
                   2634: or downward (numerically higher).
1.681     nicm     2635: .Fl Z
                   2636: keeps the window zoomed if it was zoomed.
1.57      jmc      2637: .It Xo Ic select-layout
1.588     nicm     2638: .Op Fl Enop
                   2639: .Op Fl t Ar target-pane
1.57      jmc      2640: .Op Ar layout-name
                   2641: .Xc
1.176     nicm     2642: .D1 (alias: Ic selectl )
1.57      jmc      2643: Choose a specific layout for a window.
                   2644: If
                   2645: .Ar layout-name
1.181     nicm     2646: is not given, the last preset layout used (if any) is reapplied.
1.204     nicm     2647: .Fl n
                   2648: and
                   2649: .Fl p
                   2650: are equivalent to the
                   2651: .Ic next-layout
                   2652: and
                   2653: .Ic previous-layout
                   2654: commands.
1.424     nicm     2655: .Fl o
                   2656: applies the last set layout if possible (undoes the most recent layout change).
1.588     nicm     2657: .Fl E
                   2658: spreads the current pane and any panes next to it out evenly.
1.156     nicm     2659: .It Xo Ic select-pane
1.681     nicm     2660: .Op Fl DdeLlMmRUZ
1.577     nicm     2661: .Op Fl T Ar title
1.156     nicm     2662: .Op Fl t Ar target-pane
                   2663: .Xc
1.57      jmc      2664: .D1 (alias: Ic selectp )
                   2665: Make pane
                   2666: .Ar target-pane
1.774     nicm     2667: the active pane in its window.
1.156     nicm     2668: If one of
                   2669: .Fl D ,
                   2670: .Fl L ,
                   2671: .Fl R ,
                   2672: or
                   2673: .Fl U
                   2674: is used, respectively the pane below, to the left, to the right, or above the
                   2675: target pane is used.
1.681     nicm     2676: .Fl Z
                   2677: keeps the window zoomed if it was zoomed.
1.204     nicm     2678: .Fl l
                   2679: is the same as using the
                   2680: .Ic last-pane
                   2681: command.
1.398     nicm     2682: .Fl e
                   2683: enables or
                   2684: .Fl d
                   2685: disables input to the pane.
1.668     nicm     2686: .Fl T
                   2687: sets the pane title.
1.418     nicm     2688: .Pp
1.432     nicm     2689: .Fl m
                   2690: and
                   2691: .Fl M
                   2692: are used to set and clear the
                   2693: .Em marked pane .
                   2694: There is one marked pane at a time, setting a new marked pane clears the last.
                   2695: The marked pane is the default target for
                   2696: .Fl s
                   2697: to
                   2698: .Ic join-pane ,
1.783     nicm     2699: .Ic move-pane ,
1.432     nicm     2700: .Ic swap-pane
                   2701: and
                   2702: .Ic swap-window .
1.204     nicm     2703: .It Xo Ic select-window
1.310     nicm     2704: .Op Fl lnpT
1.204     nicm     2705: .Op Fl t Ar target-window
                   2706: .Xc
1.57      jmc      2707: .D1 (alias: Ic selectw )
                   2708: Select the window at
                   2709: .Ar target-window .
1.204     nicm     2710: .Fl l ,
                   2711: .Fl n
                   2712: and
                   2713: .Fl p
                   2714: are equivalent to the
                   2715: .Ic last-window ,
                   2716: .Ic next-window
                   2717: and
                   2718: .Ic previous-window
                   2719: commands.
1.310     nicm     2720: If
                   2721: .Fl T
                   2722: is given and the selected window is already the current window,
                   2723: the command behaves like
                   2724: .Ic last-window .
1.57      jmc      2725: .It Xo Ic split-window
1.643     nicm     2726: .Op Fl bdfhIvP
1.272     nicm     2727: .Op Fl c Ar start-directory
1.641     nicm     2728: .Op Fl e Ar environment
1.690     nicm     2729: .Op Fl l Ar size
1.136     nicm     2730: .Op Fl t Ar target-pane
1.153     nicm     2731: .Op Ar shell-command
1.279     nicm     2732: .Op Fl F Ar format
1.57      jmc      2733: .Xc
1.176     nicm     2734: .D1 (alias: Ic splitw )
1.136     nicm     2735: Create a new pane by splitting
                   2736: .Ar target-pane :
1.57      jmc      2737: .Fl h
                   2738: does a horizontal split and
                   2739: .Fl v
                   2740: a vertical split; if neither is specified,
                   2741: .Fl v
                   2742: is assumed.
                   2743: The
                   2744: .Fl l
1.690     nicm     2745: option specifies the size of the new pane in lines (for vertical split) or in
                   2746: columns (for horizontal split);
                   2747: .Ar size
                   2748: may be followed by
                   2749: .Ql %
                   2750: to specify a percentage of the available space.
1.408     nicm     2751: The
                   2752: .Fl b
                   2753: option causes the new pane to be created to the left of or above
                   2754: .Ar target-pane .
1.494     nicm     2755: The
                   2756: .Fl f
                   2757: option creates a new pane spanning the full window height (with
                   2758: .Fl h )
                   2759: or full window width (with
                   2760: .Fl v ) ,
                   2761: instead of splitting the active pane.
1.643     nicm     2762: .Pp
                   2763: An empty
                   2764: .Ar shell-command
                   2765: ('') will create a pane with no command running in it.
                   2766: Output can be sent to such a pane with the
                   2767: .Ic display-message
                   2768: command.
                   2769: The
                   2770: .Fl I
                   2771: flag (if
                   2772: .Ar shell-command
                   2773: is not specified or empty)
                   2774: will create an empty pane and forward any output from stdin to it.
                   2775: For example:
                   2776: .Bd -literal -offset indent
                   2777: $ make 2>&1|tmux splitw -dI &
                   2778: .Ed
                   2779: .Pp
1.136     nicm     2780: All other options have the same meaning as for the
1.57      jmc      2781: .Ic new-window
                   2782: command.
                   2783: .It Xo Ic swap-pane
1.681     nicm     2784: .Op Fl dDUZ
1.57      jmc      2785: .Op Fl s Ar src-pane
                   2786: .Op Fl t Ar dst-pane
                   2787: .Xc
                   2788: .D1 (alias: Ic swapp )
                   2789: Swap two panes.
                   2790: If
                   2791: .Fl U
                   2792: is used and no source pane is specified with
                   2793: .Fl s ,
                   2794: .Ar dst-pane
                   2795: is swapped with the previous pane (before it numerically);
                   2796: .Fl D
                   2797: swaps with the next pane (after it numerically).
1.138     nicm     2798: .Fl d
                   2799: instructs
                   2800: .Nm
1.681     nicm     2801: not to change the active pane and
                   2802: .Fl Z
                   2803: keeps the window zoomed if it was zoomed.
1.432     nicm     2804: .Pp
                   2805: If
                   2806: .Fl s
                   2807: is omitted and a marked pane is present (see
                   2808: .Ic select-pane
                   2809: .Fl m ) ,
                   2810: the marked pane is used rather than the current pane.
1.57      jmc      2811: .It Xo Ic swap-window
                   2812: .Op Fl d
                   2813: .Op Fl s Ar src-window
                   2814: .Op Fl t Ar dst-window
                   2815: .Xc
                   2816: .D1 (alias: Ic swapw )
                   2817: This is similar to
                   2818: .Ic link-window ,
                   2819: except the source and destination windows are swapped.
                   2820: It is an error if no window exists at
                   2821: .Ar src-window .
1.705     nicm     2822: If
                   2823: .Fl d
                   2824: is given, the new window does not become the current window.
1.432     nicm     2825: .Pp
1.705     nicm     2826: If
1.432     nicm     2827: .Fl s
                   2828: is omitted and a marked pane is present (see
                   2829: .Ic select-pane
                   2830: .Fl m ) ,
                   2831: the window containing the marked pane is used rather than the current window.
1.57      jmc      2832: .It Xo Ic unlink-window
1.1       nicm     2833: .Op Fl k
                   2834: .Op Fl t Ar target-window
                   2835: .Xc
1.57      jmc      2836: .D1 (alias: Ic unlinkw )
                   2837: Unlink
                   2838: .Ar target-window .
                   2839: Unless
                   2840: .Fl k
                   2841: is given, a window may be unlinked only if it is linked to multiple sessions -
                   2842: windows may not be linked to no sessions;
                   2843: if
1.1       nicm     2844: .Fl k
1.57      jmc      2845: is specified and the window is linked to only one session, it is unlinked and
                   2846: destroyed.
                   2847: .El
                   2848: .Sh KEY BINDINGS
1.93      nicm     2849: .Nm
                   2850: allows a command to be bound to most keys, with or without a prefix key.
                   2851: When specifying keys, most represent themselves (for example
                   2852: .Ql A
                   2853: to
1.95      jmc      2854: .Ql Z ) .
1.93      nicm     2855: Ctrl keys may be prefixed with
                   2856: .Ql C-
                   2857: or
1.95      jmc      2858: .Ql ^ ,
                   2859: and Alt (meta) with
1.93      nicm     2860: .Ql M- .
                   2861: In addition, the following special key names are accepted:
1.126     nicm     2862: .Em Up ,
                   2863: .Em Down ,
                   2864: .Em Left ,
                   2865: .Em Right ,
1.93      nicm     2866: .Em BSpace ,
                   2867: .Em BTab ,
                   2868: .Em DC
                   2869: (Delete),
                   2870: .Em End ,
                   2871: .Em Enter ,
                   2872: .Em Escape ,
                   2873: .Em F1
                   2874: to
1.402     nicm     2875: .Em F12 ,
1.93      nicm     2876: .Em Home ,
                   2877: .Em IC
                   2878: (Insert),
1.254     nicm     2879: .Em NPage/PageDown/PgDn ,
                   2880: .Em PPage/PageUp/PgUp ,
1.93      nicm     2881: .Em Space ,
                   2882: and
                   2883: .Em Tab .
                   2884: Note that to bind the
                   2885: .Ql \&"
                   2886: or
                   2887: .Ql '
                   2888: keys, quotation marks are necessary, for example:
                   2889: .Bd -literal -offset indent
                   2890: bind-key '"' split-window
1.167     nicm     2891: bind-key "'" new-window
1.93      nicm     2892: .Ed
1.693     nicm     2893: .Pp
                   2894: A command bound to the
                   2895: .Em Any
                   2896: key will execute for all keys which do not have a more specific binding.
1.93      nicm     2897: .Pp
1.57      jmc      2898: Commands related to key bindings are as follows:
                   2899: .Bl -tag -width Ds
                   2900: .It Xo Ic bind-key
1.501     nicm     2901: .Op Fl nr
1.706     nicm     2902: .Op Fl N Ar note
1.421     nicm     2903: .Op Fl T Ar key-table
1.750     jmc      2904: .Ar key command Op Ar arguments
1.1       nicm     2905: .Xc
1.57      jmc      2906: .D1 (alias: Ic bind )
                   2907: Bind key
                   2908: .Ar key
                   2909: to
                   2910: .Ar command .
1.421     nicm     2911: Keys are bound in a key table.
                   2912: By default (without -T), the key is bound in
                   2913: the
                   2914: .Em prefix
                   2915: key table.
                   2916: This table is used for keys pressed after the prefix key (for example,
                   2917: by default
                   2918: .Ql c
                   2919: is bound to
                   2920: .Ic new-window
                   2921: in the
                   2922: .Em prefix
                   2923: table, so
                   2924: .Ql C-b c
                   2925: creates a new window).
                   2926: The
                   2927: .Em root
                   2928: table is used for keys pressed without the prefix key: binding
                   2929: .Ql c
                   2930: to
                   2931: .Ic new-window
                   2932: in the
                   2933: .Em root
                   2934: table (not recommended) means a plain
                   2935: .Ql c
                   2936: will create a new window.
1.57      jmc      2937: .Fl n
1.421     nicm     2938: is an alias
                   2939: for
                   2940: .Fl T Ar root .
                   2941: Keys may also be bound in custom key tables and the
                   2942: .Ic switch-client
                   2943: .Fl T
                   2944: command used to switch to them from a key binding.
1.1       nicm     2945: The
1.57      jmc      2946: .Fl r
                   2947: flag indicates this key may repeat, see the
                   2948: .Ic repeat-time
                   2949: option.
1.706     nicm     2950: .Fl N
                   2951: attaches a note to the key (shown with
                   2952: .Ic list-keys
                   2953: .Fl N ) .
1.57      jmc      2954: .Pp
                   2955: To view the default bindings and possible commands, see the
                   2956: .Ic list-keys
                   2957: command.
1.421     nicm     2958: .It Xo Ic list-keys
1.712     nicm     2959: .Op Fl 1aN
1.706     nicm     2960: .Op Fl P Ar prefix-string Fl T Ar key-table
1.731     nicm     2961: .Op Ar key
1.421     nicm     2962: .Xc
1.57      jmc      2963: .D1 (alias: Ic lsk )
1.710     nicm     2964: List key bindings.
                   2965: There are two forms: the default lists keys as
1.706     nicm     2966: .Ic bind-key
1.710     nicm     2967: commands;
                   2968: .Fl N
                   2969: lists only keys with attached notes and shows only the key and note for each
                   2970: key.
                   2971: .Pp
                   2972: With the default form, all key tables are listed by default.
                   2973: .Fl T
                   2974: lists only keys in
                   2975: .Ar key-table .
                   2976: .Pp
                   2977: With the
1.706     nicm     2978: .Fl N
1.710     nicm     2979: form, only keys in the
1.706     nicm     2980: .Em root
                   2981: and
                   2982: .Em prefix
1.710     nicm     2983: key tables are listed by default;
                   2984: .Fl T
                   2985: also lists only keys in
                   2986: .Ar key-table .
1.706     nicm     2987: .Fl P
1.710     nicm     2988: specifies a prefix to print before each key and
1.706     nicm     2989: .Fl 1
1.710     nicm     2990: lists only the first matching key.
1.712     nicm     2991: .Fl a
1.787     nicm     2992: lists the command for keys that do not have a note rather than skipping them.
1.57      jmc      2993: .It Xo Ic send-keys
1.694     nicm     2994: .Op Fl FHlMRX
1.497     nicm     2995: .Op Fl N Ar repeat-count
1.72      nicm     2996: .Op Fl t Ar target-pane
1.57      jmc      2997: .Ar key Ar ...
1.1       nicm     2998: .Xc
1.57      jmc      2999: .D1 (alias: Ic send )
                   3000: Send a key or keys to a window.
                   3001: Each argument
                   3002: .Ar key
                   3003: is the name of the key (such as
                   3004: .Ql C-a
                   3005: or
1.523     nicm     3006: .Ql NPage )
                   3007: to send; if the string is not recognised as a key, it is sent as a series of
1.57      jmc      3008: characters.
1.676     nicm     3009: All arguments are sent sequentially from first to last.
                   3010: .Pp
1.273     nicm     3011: The
                   3012: .Fl l
1.676     nicm     3013: flag disables key name lookup and processes the keys as literal UTF-8
                   3014: characters.
                   3015: The
                   3016: .Fl H
                   3017: flag expects each key to be a hexadecimal number for an ASCII character.
                   3018: .Pp
1.265     nicm     3019: The
                   3020: .Fl R
                   3021: flag causes the terminal state to be reset.
1.419     nicm     3022: .Pp
                   3023: .Fl M
                   3024: passes through a mouse event (only valid if bound to a mouse key binding, see
1.420     jmc      3025: .Sx MOUSE SUPPORT ) .
1.497     nicm     3026: .Pp
                   3027: .Fl X
                   3028: is used to send a command into copy mode - see
                   3029: the
                   3030: .Sx WINDOWS AND PANES
                   3031: section.
                   3032: .Fl N
1.694     nicm     3033: specifies a repeat count and
                   3034: .Fl F
                   3035: expands formats in arguments where appropriate.
1.267     nicm     3036: .It Xo Ic send-prefix
                   3037: .Op Fl 2
                   3038: .Op Fl t Ar target-pane
                   3039: .Xc
                   3040: Send the prefix key, or with
                   3041: .Fl 2
                   3042: the secondary prefix key, to a window as if it was pressed.
1.57      jmc      3043: .It Xo Ic unbind-key
1.795     nicm     3044: .Op Fl anq
1.421     nicm     3045: .Op Fl T Ar key-table
1.57      jmc      3046: .Ar key
1.2       nicm     3047: .Xc
1.57      jmc      3048: .D1 (alias: Ic unbind )
                   3049: Unbind the command bound to
                   3050: .Ar key .
1.530     nicm     3051: .Fl n
                   3052: and
1.421     nicm     3053: .Fl T
                   3054: are the same as for
                   3055: .Ic bind-key .
1.189     nicm     3056: If
                   3057: .Fl a
                   3058: is present, all key bindings are removed.
1.795     nicm     3059: The
                   3060: .Fl q
                   3061: option prevents errors being returned.
1.57      jmc      3062: .El
                   3063: .Sh OPTIONS
                   3064: The appearance and behaviour of
                   3065: .Nm
                   3066: may be modified by changing the value of various options.
1.668     nicm     3067: There are four types of option:
1.133     nicm     3068: .Em server options ,
1.57      jmc      3069: .Em session options
1.668     nicm     3070: .Em window options
1.57      jmc      3071: and
1.668     nicm     3072: .Em pane options .
1.57      jmc      3073: .Pp
1.133     nicm     3074: The
                   3075: .Nm
1.686     nicm     3076: server has a set of global server options which do not apply to any particular
1.668     nicm     3077: window or session or pane.
1.133     nicm     3078: These are altered with the
                   3079: .Ic set-option
                   3080: .Fl s
                   3081: command, or displayed with the
                   3082: .Ic show-options
                   3083: .Fl s
                   3084: command.
                   3085: .Pp
                   3086: In addition, each individual session may have a set of session options, and
                   3087: there is a separate set of global session options.
1.57      jmc      3088: Sessions which do not have a particular option configured inherit the value
                   3089: from the global session options.
                   3090: Session options are set or unset with the
                   3091: .Ic set-option
                   3092: command and may be listed with the
                   3093: .Ic show-options
                   3094: command.
1.133     nicm     3095: The available server and session options are listed under the
1.57      jmc      3096: .Ic set-option
                   3097: command.
                   3098: .Pp
1.668     nicm     3099: Similarly, a set of window options is attached to each window and a set of pane
                   3100: options to each pane.
                   3101: Pane options inherit from window options.
                   3102: This means any pane option may be set as a window option to apply the option to
                   3103: all panes in the window without the option set, for example these commands will
                   3104: set the background colour to red for all panes except pane 0:
                   3105: .Bd -literal -offset indent
                   3106: set -w window-style bg=red
                   3107: set -pt:.0 window-style bg=blue
                   3108: .Ed
                   3109: .Pp
                   3110: There is also a set of global window options from which any unset window or
                   3111: pane options are inherited.
                   3112: Window and pane options are altered with
                   3113: .Ic set-option
                   3114: .Fl w
                   3115: and
                   3116: .Fl p
                   3117: commands and displayed with
                   3118: .Ic show-option
                   3119: .Fl w
                   3120: and
                   3121: .Fl p .
1.318     nicm     3122: .Pp
                   3123: .Nm
                   3124: also supports user options which are prefixed with a
                   3125: .Ql \&@ .
1.321     jmc      3126: User options may have any name, so long as they are prefixed with
                   3127: .Ql \&@ ,
1.318     nicm     3128: and be set to any string.
1.418     nicm     3129: For example:
1.318     nicm     3130: .Bd -literal -offset indent
1.774     nicm     3131: $ tmux set -wq @foo "abc123"
                   3132: $ tmux show -wv @foo
1.318     nicm     3133: abc123
                   3134: .Ed
1.57      jmc      3135: .Pp
                   3136: Commands which set options are as follows:
                   3137: .Bl -tag -width Ds
1.1       nicm     3138: .It Xo Ic set-option
1.668     nicm     3139: .Op Fl aFgopqsuw
                   3140: .Op Fl t Ar target-pane
1.1       nicm     3141: .Ar option Ar value
                   3142: .Xc
                   3143: .D1 (alias: Ic set )
1.668     nicm     3144: Set a pane option with
                   3145: .Fl p ,
                   3146: a window option with
                   3147: .Fl w ,
1.133     nicm     3148: a server option with
                   3149: .Fl s ,
                   3150: otherwise a session option.
1.637     nicm     3151: If the option is not a user option,
                   3152: .Fl w
1.668     nicm     3153: or
1.637     nicm     3154: .Fl s
1.668     nicm     3155: may be unnecessary -
1.637     nicm     3156: .Nm
1.668     nicm     3157: will infer the type from the option name, assuming
                   3158: .Fl w
                   3159: for pane options.
1.133     nicm     3160: If
                   3161: .Fl g
1.433     nicm     3162: is given, the global session or window option is set.
1.637     nicm     3163: .Pp
1.550     nicm     3164: .Fl F
                   3165: expands formats in the option value.
1.1       nicm     3166: The
                   3167: .Fl u
                   3168: flag unsets an option, so a session inherits the option from the global
1.433     nicm     3169: options (or with
                   3170: .Fl g ,
                   3171: restores a global option to the default).
1.796     nicm     3172: .Ar value
                   3173: depends on the option and may be a number, a string, or a flag (on, off, or
                   3174: omitted to toggle).
1.336     nicm     3175: .Pp
                   3176: The
                   3177: .Fl o
1.446     nicm     3178: flag prevents setting an option that is already set and the
1.281     nicm     3179: .Fl q
1.446     nicm     3180: flag suppresses errors about unknown or ambiguous options.
1.281     nicm     3181: .Pp
1.378     nicm     3182: With
                   3183: .Fl a ,
                   3184: and if the option expects a string or a style,
                   3185: .Ar value
                   3186: is appended to the existing setting.
                   3187: For example:
                   3188: .Bd -literal -offset indent
                   3189: set -g status-left "foo"
                   3190: set -ag status-left "bar"
                   3191: .Ed
                   3192: .Pp
                   3193: Will result in
                   3194: .Ql foobar .
                   3195: And:
                   3196: .Bd -literal -offset indent
                   3197: set -g status-style "bg=red"
                   3198: set -ag status-style "fg=blue"
                   3199: .Ed
                   3200: .Pp
                   3201: Will result in a red background
                   3202: .Em and
                   3203: blue foreground.
                   3204: Without
                   3205: .Fl a ,
                   3206: the result would be the default background and a blue foreground.
1.668     nicm     3207: .It Xo Ic show-options
                   3208: .Op Fl AgHpqsvw
                   3209: .Op Fl t Ar target-pane
                   3210: .Op Ar option
                   3211: .Xc
                   3212: .D1 (alias: Ic show )
                   3213: Show the pane options (or a single option if
                   3214: .Ar option
                   3215: is provided) with
                   3216: .Fl p ,
                   3217: the window options with
                   3218: .Fl w ,
                   3219: the server options with
                   3220: .Fl s ,
                   3221: otherwise the session options.
                   3222: If the option is not a user option,
                   3223: .Fl w
                   3224: or
                   3225: .Fl s
                   3226: may be unnecessary -
                   3227: .Nm
                   3228: will infer the type from the option name, assuming
                   3229: .Fl w
                   3230: for pane options.
                   3231: Global session or window options are listed if
                   3232: .Fl g
                   3233: is used.
                   3234: .Fl v
                   3235: shows only the option value, not the name.
                   3236: If
                   3237: .Fl q
                   3238: is set, no error will be returned if
                   3239: .Ar option
                   3240: is unset.
                   3241: .Fl H
                   3242: includes hooks (omitted by default).
                   3243: .Fl A
                   3244: includes options inherited from a parent set of options, such options are
                   3245: marked with an asterisk.
                   3246: .El
1.133     nicm     3247: .Pp
                   3248: Available server options are:
                   3249: .Bl -tag -width Ds
1.695     nicm     3250: .It Ic backspace Ar key
                   3251: Set the key sent by
                   3252: .Nm
                   3253: for backspace.
1.198     nicm     3254: .It Ic buffer-limit Ar number
                   3255: Set the number of buffers; as new buffers are added to the top of the stack,
                   3256: old ones are removed from the bottom if necessary to maintain this maximum
                   3257: length.
1.526     nicm     3258: .It Xo Ic command-alias[]
                   3259: .Ar name=value
                   3260: .Xc
                   3261: This is an array of custom aliases for commands.
                   3262: If an unknown command matches
                   3263: .Ar name ,
                   3264: it is replaced with
                   3265: .Ar value .
                   3266: For example, after:
                   3267: .Pp
1.565     nicm     3268: .Dl set -s command-alias[100] zoom='resize-pane -Z'
1.526     nicm     3269: .Pp
                   3270: Using:
                   3271: .Pp
                   3272: .Dl zoom -t:.1
                   3273: .Pp
                   3274: Is equivalent to:
                   3275: .Pp
                   3276: .Dl resize-pane -Z -t:.1
                   3277: .Pp
                   3278: Note that aliases are expanded when a command is parsed rather than when it is
                   3279: executed, so binding an alias with
                   3280: .Ic bind-key
                   3281: will bind the expanded form.
1.425     nicm     3282: .It Ic default-terminal Ar terminal
                   3283: Set the default terminal for new windows created in this session - the
                   3284: default value of the
                   3285: .Ev TERM
                   3286: environment variable.
                   3287: For
                   3288: .Nm
                   3289: to work correctly, this
                   3290: .Em must
                   3291: be set to
                   3292: .Ql screen ,
                   3293: .Ql tmux
                   3294: or a derivative of them.
1.742     nicm     3295: .It Ic copy-command Ar shell-command
                   3296: Give the command to pipe to if the
                   3297: .Ic copy-pipe
                   3298: copy mode command is used without arguments.
1.239     nicm     3299: .It Ic escape-time Ar time
                   3300: Set the time in milliseconds for which
                   3301: .Nm
                   3302: waits after an escape is input to determine if it is part of a function or meta
                   3303: key sequences.
                   3304: The default is 500 milliseconds.
1.759     nicm     3305: .It Ic editor Ar shell-command
                   3306: Set the command used when
                   3307: .Nm
                   3308: runs an editor.
1.592     nicm     3309: .It Xo Ic exit-empty
                   3310: .Op Ic on | off
                   3311: .Xc
                   3312: If enabled (the default), the server will exit when there are no active
                   3313: sessions.
1.239     nicm     3314: .It Xo Ic exit-unattached
                   3315: .Op Ic on | off
                   3316: .Xc
                   3317: If enabled, the server will exit when there are no attached clients.
1.772     nicm     3318: .It Xo Ic extended-keys
                   3319: .Op Ic on | off
                   3320: .Xc
                   3321: When enabled, extended keys are requested from the terminal and if supported
                   3322: are recognised by
                   3323: .Nm .
1.362     nicm     3324: .It Xo Ic focus-events
                   3325: .Op Ic on | off
                   3326: .Xc
                   3327: When enabled, focus events are requested from the terminal if supported and
                   3328: passed through to applications running in
                   3329: .Nm .
                   3330: Attached clients should be detached and attached again after changing this
                   3331: option.
1.445     nicm     3332: .It Ic history-file Ar path
                   3333: If not empty, a file to which
                   3334: .Nm
                   3335: will write command prompt history on exit and load it from on start.
1.384     nicm     3336: .It Ic message-limit Ar number
                   3337: Set the number of error or information messages to save in the message log for
                   3338: each client.
                   3339: The default is 100.
1.228     nicm     3340: .It Xo Ic set-clipboard
1.556     nicm     3341: .Op Ic on | external | off
1.228     nicm     3342: .Xc
                   3343: Attempt to set the terminal clipboard content using the
                   3344: .Xr xterm 1
1.560     nicm     3345: escape sequence, if there is an
1.228     nicm     3346: .Em \&Ms
                   3347: entry in the
                   3348: .Xr terminfo 5
1.560     nicm     3349: description (see the
                   3350: .Sx TERMINFO EXTENSIONS
                   3351: section).
                   3352: .Pp
1.556     nicm     3353: If set to
                   3354: .Ic on ,
                   3355: .Nm
                   3356: will both accept the escape sequence to create a buffer and attempt to set
                   3357: the terminal clipboard.
                   3358: If set to
                   3359: .Ic external ,
                   3360: .Nm
                   3361: will attempt to set the terminal clipboard but ignore attempts
                   3362: by applications to set
                   3363: .Nm
                   3364: buffers.
                   3365: If
                   3366: .Ic off ,
                   3367: .Nm
                   3368: will neither accept the clipboard escape sequence nor attempt to set the
                   3369: clipboard.
                   3370: .Pp
1.228     nicm     3371: Note that this feature needs to be enabled in
                   3372: .Xr xterm 1
                   3373: by setting the resource:
                   3374: .Bd -literal -offset indent
                   3375: disallowedWindowOps: 20,21,SetXprop
                   3376: .Ed
                   3377: .Pp
                   3378: Or changing this property from the
                   3379: .Xr xterm 1
                   3380: interactive menu when required.
1.744     nicm     3381: .It Ic terminal-features[] Ar string
                   3382: Set terminal features for terminal types read from
                   3383: .Xr terminfo 5 .
                   3384: .Nm
                   3385: has a set of named terminal features.
                   3386: Each will apply appropriate changes to the
                   3387: .Xr terminfo 5
                   3388: entry in use.
                   3389: .Pp
                   3390: .Nm
                   3391: can detect features for a few common terminals; this option can be used to
                   3392: easily tell tmux about features supported by terminals it cannot detect.
                   3393: The
                   3394: .Ic terminal-overrides
                   3395: option allows individual
                   3396: .Xr terminfo 5
                   3397: capabilities to be set instead,
                   3398: .Ic terminal-features
                   3399: is intended for classes of functionality supported in a standard way but not
                   3400: reported by
                   3401: .Xr terminfo 5 .
                   3402: Care must be taken only to configure this with features the terminal actually
                   3403: support.
                   3404: .Pp
                   3405: This is an array option where each entry is a colon-separated string made up
                   3406: of a terminal type pattern (matched using
                   3407: .Xr fnmatch 3 )
                   3408: followed by a list of terminal features.
                   3409: The available features are:
                   3410: .Bl -tag -width Ds
                   3411: .It 256
                   3412: Supports 256 colours with the SGR escape sequences.
                   3413: .It clipboard
                   3414: Allows setting the system clipboard.
                   3415: .It ccolour
                   3416: Allows setting the cursor colour.
                   3417: .It cstyle
                   3418: Allows setting the cursor style.
1.778     nicm     3419: .It extkeys
                   3420: Supports extended keys.
                   3421: .It focus
                   3422: Supports focus reporting.
1.744     nicm     3423: .It margins
                   3424: Supports DECSLRM margins.
                   3425: .It overline
                   3426: Supports the overline SGR attribute.
                   3427: .It rectfill
                   3428: Supports the DECFRA rectangle fill escape sequence.
                   3429: .It RGB
                   3430: Supports RGB colour with the SGR escape sequences.
1.778     nicm     3431: .It strikethrough
                   3432: Supports the strikethrough SGR escape sequence.
1.744     nicm     3433: .It sync
                   3434: Supports synchronized updates.
                   3435: .It title
                   3436: Supports
                   3437: .Xr xterm 1
                   3438: title setting.
                   3439: .It usstyle
                   3440: Allows underscore style and colour to be set.
                   3441: .It UTF-8
                   3442: Is able to handle UTF-8 output.
                   3443: .El
1.528     nicm     3444: .It Ic terminal-overrides[] Ar string
                   3445: Allow terminal descriptions read using
                   3446: .Xr terminfo 5
1.531     nicm     3447: to be overridden.
1.528     nicm     3448: Each entry is a colon-separated string made up of a terminal type pattern
                   3449: (matched using
1.381     nicm     3450: .Xr fnmatch 3 )
                   3451: and a set of
                   3452: .Em name=value
                   3453: entries.
                   3454: .Pp
                   3455: For example, to set the
                   3456: .Ql clear
                   3457: .Xr terminfo 5
                   3458: entry to
                   3459: .Ql \ee[H\ee[2J
1.528     nicm     3460: for all terminal types matching
                   3461: .Ql rxvt* :
                   3462: .Pp
                   3463: .Dl "rxvt*:clear=\ee[H\ee[2J"
1.381     nicm     3464: .Pp
                   3465: The terminal entry value is passed through
                   3466: .Xr strunvis 3
                   3467: before interpretation.
1.678     nicm     3468: .It Ic user-keys[] Ar key
                   3469: Set list of user-defined key escape sequences.
                   3470: Each item is associated with a key named
                   3471: .Ql User0 ,
                   3472: .Ql User1 ,
                   3473: and so on.
                   3474: .Pp
                   3475: For example:
                   3476: .Bd -literal -offset indent
                   3477: set -s user-keys[0] "\ee[5;30012~"
                   3478: bind User0 resize-pane -L 3
                   3479: .Ed
1.133     nicm     3480: .El
1.129     nicm     3481: .Pp
1.18      nicm     3482: Available session options are:
1.1       nicm     3483: .Bl -tag -width Ds
1.569     nicm     3484: .It Xo Ic activity-action
                   3485: .Op Ic any | none | current | other
                   3486: .Xc
                   3487: Set action on window activity when
                   3488: .Ic monitor-activity
                   3489: is on.
                   3490: .Ic any
                   3491: means activity in any window linked to a session causes a bell or message
                   3492: (depending on
                   3493: .Ic visual-activity )
                   3494: in the current window of that session,
                   3495: .Ic none
                   3496: means all activity is ignored (equivalent to
                   3497: .Ic monitor-activity
                   3498: being off),
                   3499: .Ic current
                   3500: means only activity in windows other than the current window are ignored and
                   3501: .Ic other
                   3502: means activity in the current window is ignored but not those in other windows.
1.312     nicm     3503: .It Ic assume-paste-time Ar milliseconds
                   3504: If keys are entered faster than one in
                   3505: .Ar milliseconds ,
                   3506: they are assumed to have been pasted rather than typed and
                   3507: .Nm
                   3508: key bindings are not processed.
                   3509: The default is one millisecond and zero disables.
1.69      nicm     3510: .It Ic base-index Ar index
                   3511: Set the base index from which an unused index should be searched when a new
                   3512: window is created.
                   3513: The default is zero.
1.1       nicm     3514: .It Xo Ic bell-action
1.429     nicm     3515: .Op Ic any | none | current | other
1.1       nicm     3516: .Xc
1.574     nicm     3517: Set action on a bell in a window when
                   3518: .Ic monitor-bell
                   3519: is on.
1.569     nicm     3520: The values are the same as those for
                   3521: .Ic activity-action .
1.153     nicm     3522: .It Ic default-command Ar shell-command
1.1       nicm     3523: Set the command used for new windows (if not specified when the window is
                   3524: created) to
1.153     nicm     3525: .Ar shell-command ,
1.79      nicm     3526: which may be any
                   3527: .Xr sh 1
                   3528: command.
1.19      nicm     3529: The default is an empty string, which instructs
                   3530: .Nm
1.79      nicm     3531: to create a login shell using the value of the
                   3532: .Ic default-shell
                   3533: option.
                   3534: .It Ic default-shell Ar path
                   3535: Specify the default shell.
                   3536: This is used as the login shell for new windows when the
                   3537: .Ic default-command
                   3538: option is set to empty, and must be the full path of the executable.
                   3539: When started
                   3540: .Nm
                   3541: tries to set a default value from the first suitable of the
1.19      nicm     3542: .Ev SHELL
1.79      nicm     3543: environment variable, the shell returned by
                   3544: .Xr getpwuid 3 ,
                   3545: or
                   3546: .Pa /bin/sh .
                   3547: This option should be configured when
                   3548: .Nm
                   3549: is used as a login shell.
1.629     nicm     3550: .It Ic default-size Ar XxY
1.642     nicm     3551: Set the default size of new windows when the
1.643     nicm     3552: .Ic window-size
1.642     nicm     3553: option is set to manual or when a session is created with
                   3554: .Ic new-session
                   3555: .Fl d .
                   3556: The value is the width and height separated by an
                   3557: .Ql x
                   3558: character.
                   3559: The default is 80x24.
1.206     nicm     3560: .It Xo Ic destroy-unattached
                   3561: .Op Ic on | off
                   3562: .Xc
1.185     nicm     3563: If enabled and the session is no longer attached to any clients, it is
                   3564: destroyed.
1.206     nicm     3565: .It Xo Ic detach-on-destroy
                   3566: .Op Ic on | off
                   3567: .Xc
1.184     nicm     3568: If on (the default), the client is detached when the session it is attached to
                   3569: is destroyed.
                   3570: If off, the client is switched to the most recently active of the remaining
                   3571: sessions.
1.145     nicm     3572: .It Ic display-panes-active-colour Ar colour
                   3573: Set the colour used by the
                   3574: .Ic display-panes
                   3575: command to show the indicator for the active pane.
1.78      nicm     3576: .It Ic display-panes-colour Ar colour
1.145     nicm     3577: Set the colour used by the
1.78      nicm     3578: .Ic display-panes
1.145     nicm     3579: command to show the indicators for inactive panes.
1.78      nicm     3580: .It Ic display-panes-time Ar time
                   3581: Set the time in milliseconds for which the indicators shown by the
                   3582: .Ic display-panes
                   3583: command appear.
1.21      nicm     3584: .It Ic display-time Ar time
1.78      nicm     3585: Set the amount of time for which status line messages and other on-screen
                   3586: indicators are displayed.
1.462     tim      3587: If set to 0, messages and indicators are displayed until a key is pressed.
1.21      nicm     3588: .Ar time
                   3589: is in milliseconds.
1.1       nicm     3590: .It Ic history-limit Ar lines
                   3591: Set the maximum number of lines held in window history.
                   3592: This setting applies only to new windows - existing window histories are not
                   3593: resized and retain the limit at the point they were created.
1.474     nicm     3594: .It Ic key-table Ar key-table
                   3595: Set the default key table to
                   3596: .Ar key-table
                   3597: instead of
                   3598: .Em root .
1.1       nicm     3599: .It Ic lock-after-time Ar number
1.100     nicm     3600: Lock the session (like the
                   3601: .Ic lock-session
1.90      nicm     3602: command) after
1.1       nicm     3603: .Ar number
1.448     nicm     3604: seconds of inactivity.
1.100     nicm     3605: The default is not to lock (set to 0).
1.153     nicm     3606: .It Ic lock-command Ar shell-command
1.90      nicm     3607: Command to run when locking each client.
                   3608: The default is to run
                   3609: .Xr lock 1
                   3610: with
                   3611: .Fl np .
1.378     nicm     3612: .It Ic message-command-style Ar style
1.623     nicm     3613: Set status line message command style.
1.737     nicm     3614: This is used for the command prompt with
                   3615: .Xr vi 1
                   3616: keys when in command mode.
1.623     nicm     3617: For how to specify
                   3618: .Ar style ,
                   3619: see the
                   3620: .Sx STYLES
                   3621: section.
1.378     nicm     3622: .It Ic message-style Ar style
                   3623: Set status line message style.
1.737     nicm     3624: This is used for messages and for the command prompt.
1.378     nicm     3625: For how to specify
                   3626: .Ar style ,
                   3627: see the
1.623     nicm     3628: .Sx STYLES
                   3629: section.
1.419     nicm     3630: .It Xo Ic mouse
1.226     nicm     3631: .Op Ic on | off
                   3632: .Xc
                   3633: If on,
                   3634: .Nm
1.419     nicm     3635: captures the mouse and allows mouse events to be bound as key bindings.
                   3636: See the
                   3637: .Sx MOUSE SUPPORT
                   3638: section for details.
1.267     nicm     3639: .It Ic prefix Ar key
                   3640: Set the key accepted as a prefix key.
1.473     nicm     3641: In addition to the standard keys described under
                   3642: .Sx KEY BINDINGS ,
                   3643: .Ic prefix
                   3644: can be set to the special key
                   3645: .Ql None
                   3646: to set no prefix.
1.267     nicm     3647: .It Ic prefix2 Ar key
                   3648: Set a secondary key accepted as a prefix key.
1.473     nicm     3649: Like
                   3650: .Ic prefix ,
                   3651: .Ic prefix2
                   3652: can be set to
                   3653: .Ql None .
1.291     nicm     3654: .It Xo Ic renumber-windows
                   3655: .Op Ic on | off
                   3656: .Xc
                   3657: If on, when a window is closed in a session, automatically renumber the other
                   3658: windows in numerical order.
                   3659: This respects the
                   3660: .Ic base-index
                   3661: option if it has been set.
                   3662: If off, do not renumber the windows.
1.21      nicm     3663: .It Ic repeat-time Ar time
1.1       nicm     3664: Allow multiple commands to be entered without pressing the prefix-key again
                   3665: in the specified
1.21      nicm     3666: .Ar time
1.1       nicm     3667: milliseconds (the default is 500).
                   3668: Whether a key repeats may be set when it is bound using the
                   3669: .Fl r
                   3670: flag to
                   3671: .Ic bind-key .
1.52      nicm     3672: Repeat is enabled for the default keys bound to the
                   3673: .Ic resize-pane
                   3674: command.
1.1       nicm     3675: .It Xo Ic set-titles
1.56      jmc      3676: .Op Ic on | off
1.1       nicm     3677: .Xc
1.261     nicm     3678: Attempt to set the client terminal title using the
                   3679: .Em tsl
                   3680: and
                   3681: .Em fsl
                   3682: .Xr terminfo 5
                   3683: entries if they exist.
                   3684: .Nm
1.444     nicm     3685: automatically sets these to the \ee]0;...\e007 sequence if
                   3686: the terminal appears to be
                   3687: .Xr xterm 1 .
1.11      nicm     3688: This option is off by default.
1.86      nicm     3689: .It Ic set-titles-string Ar string
1.678     nicm     3690: String used to set the client terminal title if
1.86      nicm     3691: .Ic set-titles
                   3692: is on.
1.414     nicm     3693: Formats are expanded, see the
                   3694: .Sx FORMATS
                   3695: section.
1.569     nicm     3696: .It Xo Ic silence-action
                   3697: .Op Ic any | none | current | other
                   3698: .Xc
                   3699: Set action on window silence when
                   3700: .Ic monitor-silence
                   3701: is on.
                   3702: The values are the same as those for
                   3703: .Ic activity-action .
1.1       nicm     3704: .It Xo Ic status
1.625     nicm     3705: .Op Ic off | on | 2 | 3 | 4 | 5
1.1       nicm     3706: .Xc
1.625     nicm     3707: Show or hide the status line or specify its size.
                   3708: Using
                   3709: .Ic on
                   3710: gives a status line one row in height;
                   3711: .Ic 2 ,
                   3712: .Ic 3 ,
                   3713: .Ic 4
                   3714: or
                   3715: .Ic 5
                   3716: more rows.
                   3717: .It Ic status-format[] Ar format
                   3718: Specify the format to be used for each line of the status line.
                   3719: The default builds the top status line from the various individual status
                   3720: options below.
1.1       nicm     3721: .It Ic status-interval Ar interval
1.538     nicm     3722: Update the status line every
1.1       nicm     3723: .Ar interval
                   3724: seconds.
                   3725: By default, updates will occur every 15 seconds.
                   3726: A setting of zero disables redrawing at interval.
1.41      nicm     3727: .It Xo Ic status-justify
1.56      jmc      3728: .Op Ic left | centre | right
1.41      nicm     3729: .Xc
                   3730: Set the position of the window list component of the status line: left, centre
                   3731: or right justified.
1.1       nicm     3732: .It Xo Ic status-keys
1.56      jmc      3733: .Op Ic vi | emacs
1.1       nicm     3734: .Xc
1.6       jmc      3735: Use vi or emacs-style
1.1       nicm     3736: key bindings in the status line, for example at the command prompt.
1.191     nicm     3737: The default is emacs, unless the
                   3738: .Ev VISUAL
                   3739: or
                   3740: .Ev EDITOR
                   3741: environment variables are set and contain the string
                   3742: .Ql vi .
1.1       nicm     3743: .It Ic status-left Ar string
                   3744: Display
                   3745: .Ar string
1.538     nicm     3746: (by default the session name) to the left of the status line.
1.1       nicm     3747: .Ar string
                   3748: will be passed through
1.623     nicm     3749: .Xr strftime 3 .
                   3750: Also see the
                   3751: .Sx FORMATS
                   3752: and
                   3753: .Sx STYLES
                   3754: sections.
1.83      nicm     3755: .Pp
1.263     nicm     3756: For details on how the names and titles can be set see the
1.261     nicm     3757: .Sx "NAMES AND TITLES"
                   3758: section.
1.109     nicm     3759: .Pp
1.83      nicm     3760: Examples are:
                   3761: .Bd -literal -offset indent
                   3762: #(sysctl vm.loadavg)
                   3763: #[fg=yellow,bold]#(apm -l)%%#[default] [#S]
                   3764: .Ed
1.10      nicm     3765: .Pp
1.405     nicm     3766: The default is
                   3767: .Ql "[#S] " .
1.1       nicm     3768: .It Ic status-left-length Ar length
                   3769: Set the maximum
                   3770: .Ar length
1.538     nicm     3771: of the left component of the status line.
1.1       nicm     3772: The default is 10.
1.378     nicm     3773: .It Ic status-left-style Ar style
                   3774: Set the style of the left part of the status line.
                   3775: For how to specify
                   3776: .Ar style ,
                   3777: see the
1.623     nicm     3778: .Sx STYLES
                   3779: section.
1.269     nicm     3780: .It Xo Ic status-position
                   3781: .Op Ic top | bottom
                   3782: .Xc
                   3783: Set the position of the status line.
1.1       nicm     3784: .It Ic status-right Ar string
                   3785: Display
                   3786: .Ar string
1.538     nicm     3787: to the right of the status line.
1.577     nicm     3788: By default, the current pane title in double quotes, the date and the time
1.151     nicm     3789: are shown.
1.1       nicm     3790: As with
                   3791: .Ic status-left ,
                   3792: .Ar string
                   3793: will be passed to
1.459     jmc      3794: .Xr strftime 3
                   3795: and character pairs are replaced.
1.1       nicm     3796: .It Ic status-right-length Ar length
                   3797: Set the maximum
                   3798: .Ar length
1.538     nicm     3799: of the right component of the status line.
1.1       nicm     3800: The default is 40.
1.378     nicm     3801: .It Ic status-right-style Ar style
                   3802: Set the style of the right part of the status line.
                   3803: For how to specify
                   3804: .Ar style ,
                   3805: see the
1.623     nicm     3806: .Sx STYLES
                   3807: section.
1.378     nicm     3808: .It Ic status-style Ar style
                   3809: Set status line style.
                   3810: For how to specify
                   3811: .Ar style ,
                   3812: see the
1.623     nicm     3813: .Sx STYLES
                   3814: section.
1.529     nicm     3815: .It Ic update-environment[] Ar variable
                   3816: Set list of environment variables to be copied into the session environment
                   3817: when a new session is created or an existing session is attached.
1.63      nicm     3818: Any variables that do not exist in the source environment are set to be
                   3819: removed from the session environment (as if
                   3820: .Fl r
                   3821: was given to the
                   3822: .Ic set-environment
                   3823: command).
1.37      nicm     3824: .It Xo Ic visual-activity
1.569     nicm     3825: .Op Ic on | off | both
1.37      nicm     3826: .Xc
1.569     nicm     3827: If on, display a message instead of sending a bell when activity occurs in a
                   3828: window for which the
1.37      nicm     3829: .Ic monitor-activity
                   3830: window option is enabled.
1.569     nicm     3831: If set to both, a bell and a message are produced.
1.37      nicm     3832: .It Xo Ic visual-bell
1.569     nicm     3833: .Op Ic on | off | both
1.37      nicm     3834: .Xc
1.574     nicm     3835: If on, a message is shown on a bell in a window for which the
                   3836: .Ic monitor-bell
                   3837: window option is enabled instead of it being passed through to the
1.569     nicm     3838: terminal (which normally makes a sound).
                   3839: If set to both, a bell and a message are produced.
1.37      nicm     3840: Also see the
                   3841: .Ic bell-action
                   3842: option.
1.192     nicm     3843: .It Xo Ic visual-silence
1.569     nicm     3844: .Op Ic on | off | both
1.192     nicm     3845: .Xc
                   3846: If
                   3847: .Ic monitor-silence
1.569     nicm     3848: is enabled, prints a message after the interval has expired on a given window
                   3849: instead of sending a bell.
                   3850: If set to both, a bell and a message are produced.
1.255     nicm     3851: .It Ic word-separators Ar string
                   3852: Sets the session's conception of what characters are considered word
                   3853: separators, for the purposes of the next and previous word commands in
                   3854: copy mode.
                   3855: The default is
                   3856: .Ql \ -_@ .
1.1       nicm     3857: .El
                   3858: .Pp
1.668     nicm     3859: Available window options are:
1.56      jmc      3860: .Pp
                   3861: .Bl -tag -width Ds -compact
1.1       nicm     3862: .It Xo Ic aggressive-resize
1.56      jmc      3863: .Op Ic on | off
1.1       nicm     3864: .Xc
                   3865: Aggressively resize the chosen window.
                   3866: This means that
                   3867: .Nm
1.642     nicm     3868: will resize the window to the size of the smallest or largest session
                   3869: (see the
                   3870: .Ic window-size
                   3871: option) for which it is the current window, rather than the session to
                   3872: which it is attached.
                   3873: The window may resize when the current window is changed on another
                   3874: session; this option is good for full-screen programs which support
1.6       jmc      3875: .Dv SIGWINCH
                   3876: and poor for interactive programs such as shells.
1.262     nicm     3877: .Pp
1.1       nicm     3878: .It Xo Ic automatic-rename
1.56      jmc      3879: .Op Ic on | off
1.1       nicm     3880: .Xc
                   3881: Control automatic window renaming.
                   3882: When this setting is enabled,
                   3883: .Nm
1.368     nicm     3884: will rename the window automatically using the format specified by
                   3885: .Ic automatic-rename-format .
1.1       nicm     3886: This flag is automatically disabled for an individual window when a name
                   3887: is specified at creation with
1.186     nicm     3888: .Ic new-window
                   3889: or
1.1       nicm     3890: .Ic new-session ,
                   3891: or later with
1.261     nicm     3892: .Ic rename-window ,
                   3893: or with a terminal escape sequence.
1.1       nicm     3894: It may be switched off globally with:
                   3895: .Bd -literal -offset indent
1.668     nicm     3896: set-option -wg automatic-rename off
1.1       nicm     3897: .Ed
1.368     nicm     3898: .Pp
                   3899: .It Ic automatic-rename-format Ar format
                   3900: The format (see
                   3901: .Sx FORMATS )
                   3902: used when the
                   3903: .Ic automatic-rename
                   3904: option is enabled.
1.56      jmc      3905: .Pp
1.1       nicm     3906: .It Ic clock-mode-colour Ar colour
                   3907: Set clock colour.
1.56      jmc      3908: .Pp
1.1       nicm     3909: .It Xo Ic clock-mode-style
1.56      jmc      3910: .Op Ic 12 | 24
1.1       nicm     3911: .Xc
                   3912: Set clock hour format.
1.56      jmc      3913: .Pp
1.196     nicm     3914: .It Ic main-pane-height Ar height
1.2       nicm     3915: .It Ic main-pane-width Ar width
                   3916: Set the width or height of the main (left or top) pane in the
                   3917: .Ic main-horizontal
                   3918: or
                   3919: .Ic main-vertical
                   3920: layouts.
1.747     nicm     3921: If suffixed by
                   3922: .Ql % ,
                   3923: this is a percentage of the window size.
1.757     nicm     3924: .Pp
                   3925: .It Ic copy-mode-match-style Ar style
                   3926: Set the style of search matches in copy mode.
1.768     nicm     3927: For how to specify
                   3928: .Ar style ,
                   3929: see the
                   3930: .Sx STYLES
                   3931: section.
                   3932: .Pp
                   3933: .It Ic copy-mode-mark-style Ar style
                   3934: Set the style of the line containing the mark in copy mode.
1.757     nicm     3935: For how to specify
                   3936: .Ar style ,
                   3937: see the
                   3938: .Sx STYLES
                   3939: section.
                   3940: .Pp
                   3941: .It Ic copy-mode-current-match-style Ar style
                   3942: Set the style of the current search match in copy mode.
                   3943: For how to specify
                   3944: .Ar style ,
                   3945: see the
                   3946: .Sx STYLES
                   3947: section.
1.56      jmc      3948: .Pp
1.1       nicm     3949: .It Xo Ic mode-keys
1.56      jmc      3950: .Op Ic vi | emacs
1.1       nicm     3951: .Xc
1.500     nicm     3952: Use vi or emacs-style key bindings in copy mode.
                   3953: The default is emacs, unless
1.191     nicm     3954: .Ev VISUAL
                   3955: or
                   3956: .Ev EDITOR
                   3957: contains
                   3958: .Ql vi .
1.56      jmc      3959: .Pp
1.378     nicm     3960: .It Ic mode-style Ar style
                   3961: Set window modes style.
                   3962: For how to specify
                   3963: .Ar style ,
                   3964: see the
1.623     nicm     3965: .Sx STYLES
                   3966: section.
1.378     nicm     3967: .Pp
1.1       nicm     3968: .It Xo Ic monitor-activity
1.56      jmc      3969: .Op Ic on | off
1.1       nicm     3970: .Xc
                   3971: Monitor for activity in the window.
                   3972: Windows with activity are highlighted in the status line.
1.56      jmc      3973: .Pp
1.574     nicm     3974: .It Xo Ic monitor-bell
                   3975: .Op Ic on | off
                   3976: .Xc
                   3977: Monitor for a bell in the window.
                   3978: Windows with a bell are highlighted in the status line.
                   3979: .Pp
1.192     nicm     3980: .It Xo Ic monitor-silence
                   3981: .Op Ic interval
                   3982: .Xc
                   3983: Monitor for silence (no activity) in the window within
                   3984: .Ic interval
                   3985: seconds.
                   3986: Windows that have been silent for the interval are highlighted in the
                   3987: status line.
                   3988: An interval of zero disables the monitoring.
1.195     nicm     3989: .Pp
                   3990: .It Ic other-pane-height Ar height
                   3991: Set the height of the other panes (not the main pane) in the
                   3992: .Ic main-horizontal
                   3993: layout.
                   3994: If this option is set to 0 (the default), it will have no effect.
                   3995: If both the
                   3996: .Ic main-pane-height
                   3997: and
                   3998: .Ic other-pane-height
                   3999: options are set, the main pane will grow taller to make the other panes the
                   4000: specified height, but will never shrink to do so.
1.747     nicm     4001: If suffixed by
                   4002: .Ql % ,
                   4003: this is a percentage of the window size.
1.195     nicm     4004: .Pp
                   4005: .It Ic other-pane-width Ar width
                   4006: Like
                   4007: .Ic other-pane-height ,
                   4008: but set the width of other panes in the
                   4009: .Ic main-vertical
                   4010: layout.
1.243     nicm     4011: .Pp
1.413     nicm     4012: .It Ic pane-active-border-style Ar style
                   4013: Set the pane border style for the currently active pane.
                   4014: For how to specify
                   4015: .Ar style ,
                   4016: see the
1.623     nicm     4017: .Sx STYLES
                   4018: section.
1.413     nicm     4019: Attributes are ignored.
                   4020: .Pp
1.243     nicm     4021: .It Ic pane-base-index Ar index
                   4022: Like
                   4023: .Ic base-index ,
                   4024: but set the starting index for pane numbers.
1.484     nicm     4025: .Pp
                   4026: .It Ic pane-border-format Ar format
                   4027: Set the text shown in pane border status lines.
1.770     nicm     4028: .Pp
                   4029: .It Ic pane-border-lines Ar type
                   4030: Set the type of characters used for drawing pane borders.
                   4031: .Ar type
                   4032: may be one of:
                   4033: .Bl -tag -width Ds
                   4034: .It single
                   4035: single lines using ACS or UTF-8 characters
                   4036: .It double
                   4037: double lines using UTF-8 characters
                   4038: .It heavy
                   4039: heavy lines using UTF-8 characters
                   4040: .It simple
                   4041: simple ASCII characters
                   4042: .It number
                   4043: the pane number
                   4044: .El
                   4045: .Pp
                   4046: .Ql double
                   4047: and
                   4048: .Ql heavy
                   4049: will fall back to standard ACS line drawing when UTF-8 is not supported.
1.484     nicm     4050: .Pp
                   4051: .It Xo Ic pane-border-status
                   4052: .Op Ic off | top | bottom
                   4053: .Xc
                   4054: Turn pane border status lines off or set their position.
1.413     nicm     4055: .Pp
                   4056: .It Ic pane-border-style Ar style
                   4057: Set the pane border style for panes aside from the active pane.
                   4058: For how to specify
                   4059: .Ar style ,
                   4060: see the
1.623     nicm     4061: .Sx STYLES
                   4062: section.
1.413     nicm     4063: Attributes are ignored.
1.192     nicm     4064: .Pp
1.99      nicm     4065: .It Xo Ic synchronize-panes
                   4066: .Op Ic on | off
                   4067: .Xc
1.164     nicm     4068: Duplicate input to any pane to all other panes in the same window (only
                   4069: for panes that are not in any special mode).
1.56      jmc      4070: .Pp
1.378     nicm     4071: .It Ic window-status-activity-style Ar style
                   4072: Set status line style for windows with an activity alert.
                   4073: For how to specify
                   4074: .Ar style ,
                   4075: see the
1.623     nicm     4076: .Sx STYLES
                   4077: section.
1.169     nicm     4078: .Pp
1.378     nicm     4079: .It Ic window-status-bell-style Ar style
                   4080: Set status line style for windows with a bell alert.
                   4081: For how to specify
                   4082: .Ar style ,
                   4083: see the
1.623     nicm     4084: .Sx STYLES
                   4085: section.
1.169     nicm     4086: .Pp
1.125     nicm     4087: .It Ic window-status-current-format Ar string
                   4088: Like
                   4089: .Ar window-status-format ,
                   4090: but is the format used when the window is the current window.
1.307     nicm     4091: .Pp
1.378     nicm     4092: .It Ic window-status-current-style Ar style
                   4093: Set status line style for the currently active window.
                   4094: For how to specify
                   4095: .Ar style ,
                   4096: see the
1.623     nicm     4097: .Sx STYLES
                   4098: section.
1.239     nicm     4099: .Pp
                   4100: .It Ic window-status-format Ar string
                   4101: Set the format in which the window is displayed in the status line window list.
                   4102: See the
1.623     nicm     4103: .Sx FORMATS
                   4104: and
                   4105: .Sx STYLES
                   4106: sections.
1.290     nicm     4107: .Pp
1.378     nicm     4108: .It Ic window-status-last-style Ar style
                   4109: Set status line style for the last active window.
                   4110: For how to specify
                   4111: .Ar style ,
                   4112: see the
1.623     nicm     4113: .Sx STYLES
                   4114: section.
1.378     nicm     4115: .Pp
1.290     nicm     4116: .It Ic window-status-separator Ar string
                   4117: Sets the separator drawn between windows in the status line.
                   4118: The default is a single space character.
1.125     nicm     4119: .Pp
1.378     nicm     4120: .It Ic window-status-style Ar style
                   4121: Set status line style for a single window.
1.418     nicm     4122: For how to specify
                   4123: .Ar style ,
                   4124: see the
1.623     nicm     4125: .Sx STYLES
                   4126: section.
1.418     nicm     4127: .Pp
1.642     nicm     4128: .It Xo Ic window-size
1.689     nicm     4129: .Ar largest | Ar smallest | Ar manual | Ar latest
1.642     nicm     4130: .Xc
                   4131: Configure how
                   4132: .Nm
                   4133: determines the window size.
                   4134: If set to
                   4135: .Ar largest ,
                   4136: the size of the largest attached session is used; if
                   4137: .Ar smallest ,
                   4138: the size of the smallest.
                   4139: If
                   4140: .Ar manual ,
                   4141: the size of a new window is set from the
                   4142: .Ic default-size
                   4143: option and windows are resized automatically.
1.689     nicm     4144: With
                   4145: .Ar latest ,
                   4146: .Nm
                   4147: uses the size of the client that had the most recent activity.
1.642     nicm     4148: See also the
                   4149: .Ic resize-window
                   4150: command and the
                   4151: .Ic aggressive-resize
                   4152: option.
                   4153: .Pp
1.512     nicm     4154: .It Xo Ic wrap-search
                   4155: .Op Ic on | off
                   4156: .Xc
                   4157: If this option is set, searches will wrap around the end of the pane contents.
                   4158: The default is on.
1.57      jmc      4159: .El
1.668     nicm     4160: .Pp
                   4161: Available pane options are:
                   4162: .Pp
                   4163: .Bl -tag -width Ds -compact
1.669     nicm     4164: .It Xo Ic allow-rename
                   4165: .Op Ic on | off
                   4166: .Xc
                   4167: Allow programs in the pane to change the window name using a terminal escape
                   4168: sequence (\eek...\ee\e\e).
                   4169: .Pp
                   4170: .It Xo Ic alternate-screen
                   4171: .Op Ic on | off
                   4172: .Xc
                   4173: This option configures whether programs running inside the pane may use the
                   4174: terminal alternate screen feature, which allows the
                   4175: .Em smcup
                   4176: and
                   4177: .Em rmcup
                   4178: .Xr terminfo 5
                   4179: capabilities.
                   4180: The alternate screen feature preserves the contents of the window when an
                   4181: interactive application starts and restores it on exit, so that any output
                   4182: visible before the application starts reappears unchanged after it exits.
                   4183: .Pp
1.668     nicm     4184: .It Xo Ic remain-on-exit
                   4185: .Op Ic on | off
1.57      jmc      4186: .Xc
1.668     nicm     4187: A pane with this flag set is not destroyed when the program running in it
                   4188: exits.
                   4189: The pane may be reactivated with the
                   4190: .Ic respawn-pane
                   4191: command.
                   4192: .Pp
                   4193: .It Ic window-active-style Ar style
                   4194: Set the pane style when it is the active pane.
                   4195: For how to specify
                   4196: .Ar style ,
                   4197: see the
                   4198: .Sx STYLES
                   4199: section.
                   4200: .Pp
                   4201: .It Ic window-style Ar style
                   4202: Set the pane style.
                   4203: For how to specify
                   4204: .Ar style ,
                   4205: see the
                   4206: .Sx STYLES
                   4207: section.
1.63      nicm     4208: .El
1.469     nicm     4209: .Sh HOOKS
                   4210: .Nm
                   4211: allows commands to run on various triggers, called
                   4212: .Em hooks .
1.505     nicm     4213: Most
1.483     nicm     4214: .Nm
1.505     nicm     4215: commands have an
1.483     nicm     4216: .Em after
                   4217: hook and there are a number of hooks not associated with commands.
                   4218: .Pp
1.640     nicm     4219: Hooks are stored as array options, members of the array are executed in
                   4220: order when the hook is triggered.
1.740     nicm     4221: Like options different hooks may be global or belong to a session, window or pane.
1.640     nicm     4222: Hooks may be configured with the
                   4223: .Ic set-hook
                   4224: or
                   4225: .Ic set-option
                   4226: commands and displayed with
                   4227: .Ic show-hooks
                   4228: or
                   4229: .Ic show-options
                   4230: .Fl H .
                   4231: The following two commands are equivalent:
                   4232: .Bd -literal -offset indent.
                   4233: set-hook -g pane-mode-changed[42] 'set -g status-left-style bg=red'
                   4234: set-option -g pane-mode-changed[42] 'set -g status-left-style bg=red'
                   4235: .Ed
                   4236: .Pp
                   4237: Setting a hook without specifying an array index clears the hook and sets the
                   4238: first member of the array.
                   4239: .Pp
1.505     nicm     4240: A command's after
                   4241: hook is run after it completes, except when the command is run as part of a hook
1.483     nicm     4242: itself.
1.505     nicm     4243: They are named with an
1.483     nicm     4244: .Ql after-
                   4245: prefix.
                   4246: For example, the following command adds a hook to select the even-vertical
                   4247: layout after every
                   4248: .Ic split-window :
                   4249: .Bd -literal -offset indent
1.640     nicm     4250: set-hook -g after-split-window "selectl even-vertical"
1.483     nicm     4251: .Ed
                   4252: .Pp
1.584     nicm     4253: All the notifications listed in the
                   4254: .Sx CONTROL MODE
                   4255: section are hooks (without any arguments), except
                   4256: .Ic %exit .
                   4257: The following additional hooks are available:
1.560     nicm     4258: .Bl -tag -width "XXXXXXXXXXXXXXXXXXXXXX"
1.476     nicm     4259: .It alert-activity
                   4260: Run when a window has activity.
                   4261: See
                   4262: .Ic monitor-activity .
                   4263: .It alert-bell
                   4264: Run when a window has received a bell.
1.574     nicm     4265: See
                   4266: .Ic monitor-bell .
1.476     nicm     4267: .It alert-silence
                   4268: Run when a window has been silent.
                   4269: See
                   4270: .Ic monitor-silence .
1.469     nicm     4271: .It client-attached
                   4272: Run when a client is attached.
                   4273: .It client-detached
                   4274: Run when a client is detached
                   4275: .It client-resized
                   4276: Run when a client is resized.
1.511     nicm     4277: .It client-session-changed
                   4278: Run when a client's attached session is changed.
1.475     nicm     4279: .It pane-died
                   4280: Run when the program running in a pane exits, but
                   4281: .Ic remain-on-exit
                   4282: is on so the pane has not closed.
                   4283: .It pane-exited
                   4284: Run when the program running in a pane exits.
1.603     nicm     4285: .It pane-focus-in
                   4286: Run when the focus enters a pane, if the
                   4287: .Ic focus-events
                   4288: option is on.
                   4289: .It pane-focus-out
                   4290: Run when the focus exits a pane, if the
                   4291: .Ic focus-events
                   4292: option is on.
1.560     nicm     4293: .It pane-set-clipboard
                   4294: Run when the terminal clipboard is set using the
                   4295: .Xr xterm 1
                   4296: escape sequence.
1.510     nicm     4297: .It session-created
                   4298: Run when a new session created.
                   4299: .It session-closed
                   4300: Run when a session closed.
1.507     nicm     4301: .It session-renamed
                   4302: Run when a session is renamed.
1.511     nicm     4303: .It window-linked
                   4304: Run when a window is linked into a session.
1.507     nicm     4305: .It window-renamed
                   4306: Run when a window is renamed.
1.511     nicm     4307: .It window-unlinked
                   4308: Run when a window is unlinked from a session.
1.469     nicm     4309: .El
                   4310: .Pp
                   4311: Hooks are managed with these commands:
                   4312: .Bl -tag -width Ds
                   4313: .It Xo Ic set-hook
1.740     nicm     4314: .Op Fl agpRuw
                   4315: .Op Fl t Ar target-pane
1.469     nicm     4316: .Ar hook-name
                   4317: .Ar command
                   4318: .Xc
1.604     nicm     4319: Without
1.605     jmc      4320: .Fl R ,
1.604     nicm     4321: sets (or with
1.496     nicm     4322: .Fl u
                   4323: unsets) hook
1.469     nicm     4324: .Ar hook-name
                   4325: to
                   4326: .Ar command .
1.740     nicm     4327: The flags are the same as for
                   4328: .Ic set-option .
1.604     nicm     4329: .Pp
                   4330: With
                   4331: .Fl R ,
                   4332: run
                   4333: .Ar hook-name
                   4334: immediately.
1.469     nicm     4335: .It Xo Ic show-hooks
1.740     nicm     4336: .Op Fl gpw
                   4337: .Op Fl t Ar target-pane
1.469     nicm     4338: .Xc
1.740     nicm     4339: Shows hooks.
                   4340: The flags are the same as for
                   4341: .Ic show-options .
1.470     jmc      4342: .El
1.419     nicm     4343: .Sh MOUSE SUPPORT
                   4344: If the
                   4345: .Ic mouse
                   4346: option is on (the default is off),
                   4347: .Nm
                   4348: allows mouse events to be bound as keys.
                   4349: The name of each key is made up of a mouse event (such as
                   4350: .Ql MouseUp1 )
1.632     nicm     4351: and a location suffix, one of the following:
                   4352: .Bl -column "XXXXXXXXXXXXX" -offset indent
                   4353: .It Li "Pane" Ta "the contents of a pane"
                   4354: .It Li "Border" Ta "a pane border"
                   4355: .It Li "Status" Ta "the status line window list"
                   4356: .It Li "StatusLeft" Ta "the left part of the status line"
                   4357: .It Li "StatusRight" Ta "the right part of the status line"
                   4358: .It Li "StatusDefault" Ta "any other part of the status line"
                   4359: .El
                   4360: .Pp
1.419     nicm     4361: The following mouse events are available:
                   4362: .Bl -column "MouseDown1" "MouseDrag1" "WheelDown" -offset indent
1.498     nicm     4363: .It Li "WheelUp" Ta "WheelDown" Ta ""
1.481     nicm     4364: .It Li "MouseDown1" Ta "MouseUp1" Ta "MouseDrag1" Ta "MouseDragEnd1"
                   4365: .It Li "MouseDown2" Ta "MouseUp2" Ta "MouseDrag2" Ta "MouseDragEnd2"
                   4366: .It Li "MouseDown3" Ta "MouseUp3" Ta "MouseDrag3" Ta "MouseDragEnd3"
1.724     nicm     4367: .It Li "SecondClick1" Ta "SecondClick2" Ta "SecondClick3"
1.590     nicm     4368: .It Li "DoubleClick1" Ta "DoubleClick2" Ta "DoubleClick3"
                   4369: .It Li "TripleClick1" Ta "TripleClick2" Ta "TripleClick3"
1.419     nicm     4370: .El
1.724     nicm     4371: .Pp
                   4372: The
                   4373: .Ql SecondClick
                   4374: events are fired for the second click of a double click, even if there may be a
                   4375: third click which will fire
                   4376: .Ql TripleClick
                   4377: instead of
                   4378: .Ql DoubleClick .
1.419     nicm     4379: .Pp
                   4380: Each should be suffixed with a location, for example
                   4381: .Ql MouseDown1Status .
                   4382: .Pp
1.423     nicm     4383: The special token
                   4384: .Ql {mouse}
                   4385: or
1.419     nicm     4386: .Ql =
                   4387: may be used as
                   4388: .Ar target-window
                   4389: or
                   4390: .Ar target-pane
                   4391: in commands bound to mouse key bindings.
                   4392: It resolves to the window or pane over which the mouse event took place
                   4393: (for example, the window in the status line over which button 1 was released for a
                   4394: .Ql MouseUp1Status
                   4395: binding, or the pane over which the wheel was scrolled for a
                   4396: .Ql WheelDownPane
                   4397: binding).
                   4398: .Pp
                   4399: The
                   4400: .Ic send-keys
                   4401: .Fl M
                   4402: flag may be used to forward a mouse event to a pane.
                   4403: .Pp
                   4404: The default key bindings allow the mouse to be used to select and resize panes,
                   4405: to copy text and to change window using the status line.
                   4406: These take effect if the
                   4407: .Ic mouse
                   4408: option is turned on.
1.245     nicm     4409: .Sh FORMATS
1.294     nicm     4410: Certain commands accept the
1.245     nicm     4411: .Fl F
                   4412: flag with a
                   4413: .Ar format
                   4414: argument.
                   4415: This is a string which controls the output format of the command.
1.678     nicm     4416: Format variables are enclosed in
1.245     nicm     4417: .Ql #{
                   4418: and
                   4419: .Ql } ,
                   4420: for example
1.359     nicm     4421: .Ql #{session_name} .
1.409     nicm     4422: The possible variables are listed in the table below, or the name of a
                   4423: .Nm
                   4424: option may be used for an option's value.
                   4425: Some variables have a shorter alias such as
1.598     nicm     4426: .Ql #S ;
1.376     nicm     4427: .Ql ##
                   4428: is replaced by a single
1.598     nicm     4429: .Ql # ,
                   4430: .Ql #,
                   4431: by a
                   4432: .Ql \&,
                   4433: and
                   4434: .Ql #}
                   4435: by a
                   4436: .Ql } .
1.409     nicm     4437: .Pp
                   4438: Conditionals are available by prefixing with
1.246     jmc      4439: .Ql \&?
1.245     nicm     4440: and separating two alternatives with a comma;
                   4441: if the specified variable exists and is not zero, the first alternative
1.246     jmc      4442: is chosen, otherwise the second is used.
                   4443: For example
1.245     nicm     4444: .Ql #{?session_attached,attached,not attached}
                   4445: will include the string
                   4446: .Ql attached
                   4447: if the session is attached and the string
                   4448: .Ql not attached
1.409     nicm     4449: if it is unattached, or
                   4450: .Ql #{?automatic-rename,yes,no}
                   4451: will include
                   4452: .Ql yes
                   4453: if
                   4454: .Ic automatic-rename
                   4455: is enabled, or
                   4456: .Ql no
                   4457: if not.
1.599     nicm     4458: Conditionals can be nested arbitrarily.
                   4459: Inside a conditional,
                   4460: .Ql \&,
                   4461: and
                   4462: .Ql }
                   4463: must be escaped as
                   4464: .Ql #,
                   4465: and
                   4466: .Ql #} ,
                   4467: unless they are part of a
                   4468: .Ql #{...}
1.600     nicm     4469: replacement.
                   4470: For example:
1.599     nicm     4471: .Bd -literal -offset indent
                   4472: #{?pane_in_mode,#[fg=white#,bg=red],#[fg=red#,bg=white]}#W .
                   4473: .Ed
1.520     nicm     4474: .Pp
1.678     nicm     4475: String comparisons may be expressed by prefixing two comma-separated
1.520     nicm     4476: alternatives by
1.652     nicm     4477: .Ql == ,
                   4478: .Ql != ,
                   4479: .Ql < ,
                   4480: .Ql > ,
                   4481: .Ql <=
1.520     nicm     4482: or
1.652     nicm     4483: .Ql >=
1.520     nicm     4484: and a colon.
                   4485: For example
1.544     nicm     4486: .Ql #{==:#{host},myhost}
1.520     nicm     4487: will be replaced by
                   4488: .Ql 1
                   4489: if running on
                   4490: .Ql myhost ,
                   4491: otherwise by
1.554     nicm     4492: .Ql 0 .
                   4493: .Ql ||
                   4494: and
                   4495: .Ql &&
                   4496: evaluate to true if either or both of two comma-separated alternatives are
                   4497: true, for example
1.595     nicm     4498: .Ql #{||:#{pane_in_mode},#{alternate_on}} .
1.664     nicm     4499: .Pp
                   4500: An
                   4501: .Ql m
                   4502: specifies an
                   4503: .Xr fnmatch 3
                   4504: or regular expression comparison.
                   4505: The first argument is the pattern and the second the string to compare.
1.714     nicm     4506: An optional argument specifies flags:
1.664     nicm     4507: .Ql r
                   4508: means the pattern is a regular expression instead of the default
                   4509: .Xr fnmatch 3
                   4510: pattern, and
                   4511: .Ql i
                   4512: means to ignore case.
                   4513: For example:
                   4514: .Ql #{m:*foo*,#{host}}
                   4515: or
                   4516: .Ql #{m/ri:^A,MYVAR} .
1.554     nicm     4517: A
                   4518: .Ql C
                   4519: performs a search for an
                   4520: .Xr fnmatch 3
1.664     nicm     4521: pattern or regular expression in the pane content and evaluates to zero if not
                   4522: found, or a line number if found.
                   4523: Like
                   4524: .Ql m ,
1.665     jmc      4525: an
1.664     nicm     4526: .Ql r
                   4527: flag means search for a regular expression and
                   4528: .Ql i
                   4529: ignores case.
                   4530: For example:
                   4531: .Ql #{C/r:^Start}
1.714     nicm     4532: .Pp
                   4533: Numeric operators may be performed by prefixing two comma-separated alternatives with an
                   4534: .Ql e
                   4535: and an operator.
                   4536: An optional
                   4537: .Ql f
                   4538: flag may be given after the operator to use floating point numbers, otherwise integers are used.
                   4539: This may be followed by a number giving the number of decimal places to use for the result.
                   4540: The available operators are:
                   4541: addition
                   4542: .Ql + ,
                   4543: subtraction
                   4544: .Ql - ,
                   4545: multiplication
                   4546: .Ql * ,
                   4547: division
                   4548: .Ql / ,
1.801     nicm     4549: modulus
1.714     nicm     4550: .Ql m
                   4551: or
                   4552: .Ql %
                   4553: (note that
                   4554: .Ql %
                   4555: must be escaped as
                   4556: .Ql %%
                   4557: in formats which are also expanded by
1.801     nicm     4558: .Xr strftime 3 )
                   4559: and numeric comparison operators
                   4560: .Ql == ,
                   4561: .Ql != ,
                   4562: .Ql < ,
                   4563: .Ql <= ,
                   4564: .Ql >
                   4565: and
                   4566: .Ql >= .
1.714     nicm     4567: For example,
                   4568: .Ql #{e|*|f|4:5.5,3}
                   4569: multiplies 5.5 by 3 for a result with four decimal places and
                   4570: .Ql #{e|%%:7,3}
                   4571: returns the modulus of 7 and 3.
1.453     nicm     4572: .Pp
1.367     nicm     4573: A limit may be placed on the length of the resultant string by prefixing it
                   4574: by an
                   4575: .Ql = ,
1.479     nicm     4576: a number and a colon.
                   4577: Positive numbers count from the start of the string and negative from the end,
                   4578: so
                   4579: .Ql #{=5:pane_title}
1.653     nicm     4580: will include at most the first five characters of the pane title, or
1.479     nicm     4581: .Ql #{=-5:pane_title}
1.653     nicm     4582: the last five characters.
                   4583: A suffix or prefix may be given as a second argument - if provided then it is
                   4584: appended or prepended to the string if the length has been trimmed, for example
                   4585: .Ql #{=/5/...:pane_title}
                   4586: will append
                   4587: .Ql ...
                   4588: if the pane title is more than five characters.
1.698     nicm     4589: Similarly,
                   4590: .Ql p
                   4591: pads the string to a given width, for example
                   4592: .Ql #{p10:pane_title}
                   4593: will result in a width of at least 10 characters.
                   4594: A positive width pads on the left, a negative on the right.
1.791     nicm     4595: .Ql n
1.803     nicm     4596: expands to the length of the variable and
                   4597: .Ql w
                   4598: to its width when displayed, for example
1.791     nicm     4599: .Ql #{n:window_name} .
1.653     nicm     4600: .Pp
1.453     nicm     4601: Prefixing a time variable with
1.683     nicm     4602: .Ql t:\&
1.453     nicm     4603: will convert it to a string, so if
                   4604: .Ql #{window_activity}
                   4605: gives
1.454     jmc      4606: .Ql 1445765102 ,
1.453     nicm     4607: .Ql #{t:window_activity}
                   4608: gives
                   4609: .Ql Sun Oct 25 09:25:02 2015 .
1.751     nicm     4610: Adding
                   4611: .Ql p (
                   4612: .Ql `t/p` )
                   4613: will use shorter but less accurate time format for times in the past.
1.765     nicm     4614: A custom format may be given using an
                   4615: .Ql f
                   4616: suffix (note that
                   4617: .Ql %
                   4618: must be escaped as
                   4619: .Ql %%
                   4620: if the format is separately being passed through
                   4621: .Xr strftime 3 ,
                   4622: for example in the
                   4623: .Ic status-left
                   4624: option):
                   4625: .Ql #{t/f/%%H#:%%M:window_activity} ,
                   4626: see
                   4627: .Xr strftime 3 .
                   4628: .Pp
1.453     nicm     4629: The
1.683     nicm     4630: .Ql b:\&
1.453     nicm     4631: and
1.683     nicm     4632: .Ql d:\&
1.453     nicm     4633: prefixes are
                   4634: .Xr basename 3
                   4635: and
                   4636: .Xr dirname 3
                   4637: of the variable respectively.
1.683     nicm     4638: .Ql q:\&
1.610     nicm     4639: will escape
                   4640: .Xr sh 1
1.806     nicm     4641: special characters or with an
                   4642: .Ql e
                   4643: suffix, escape hash characters (so
                   4644: .Ql #
                   4645: becomes
1.807   ! nicm     4646: .Ql ## ) .
1.683     nicm     4647: .Ql E:\&
1.617     nicm     4648: will expand the format twice, for example
                   4649: .Ql #{E:status-left}
                   4650: is the result of expanding the content of the
                   4651: .Ic status-left
1.671     nicm     4652: option rather than the option itself.
1.683     nicm     4653: .Ql T:\&
1.620     nicm     4654: is like
1.683     nicm     4655: .Ql E:\&
1.620     nicm     4656: but also expands
                   4657: .Xr strftime 3
                   4658: specifiers.
1.683     nicm     4659: .Ql S:\& ,
                   4660: .Ql W:\&
1.618     nicm     4661: or
1.683     nicm     4662: .Ql P:\&
1.618     nicm     4663: will loop over each session, window or pane and insert the format once
1.619     nicm     4664: for each.
                   4665: For windows and panes, two comma-separated formats may be given:
                   4666: the second is used for the current window or active pane.
                   4667: For example, to get a list of windows formatted like the status line:
1.618     nicm     4668: .Bd -literal -offset indent
                   4669: #{W:#{E:window-status-format} ,#{E:window-status-current-format} }
                   4670: .Ed
1.625     nicm     4671: .Pp
1.461     nicm     4672: A prefix of the form
1.683     nicm     4673: .Ql s/foo/bar/:\&
1.461     nicm     4674: will substitute
                   4675: .Ql foo
                   4676: with
                   4677: .Ql bar
                   4678: throughout.
1.664     nicm     4679: The first argument may be an extended regular expression and a final argument may be
                   4680: .Ql i
                   4681: to ignore case, for example
1.683     nicm     4682: .Ql s/a(.)/\e1x/i:\&
1.664     nicm     4683: would change
                   4684: .Ql abABab
                   4685: into
                   4686: .Ql bxBxbx .
1.431     nicm     4687: .Pp
1.671     nicm     4688: In addition, the last line of a shell command's output may be inserted using
1.431     nicm     4689: .Ql #() .
                   4690: For example,
                   4691: .Ql #(uptime)
                   4692: will insert the system's uptime.
                   4693: When constructing formats,
                   4694: .Nm
                   4695: does not wait for
                   4696: .Ql #()
                   4697: commands to finish; instead, the previous result from running the same command is used,
                   4698: or a placeholder if the command has not been run before.
1.543     nicm     4699: If the command hasn't exited, the most recent line of output will be used, but the status
                   4700: line will not be updated more than once a second.
1.431     nicm     4701: Commands are executed with the
                   4702: .Nm
                   4703: global environment set (see the
1.644     schwarze 4704: .Sx GLOBAL AND SESSION ENVIRONMENT
1.431     nicm     4705: section).
1.671     nicm     4706: .Pp
                   4707: An
                   4708: .Ql l
                   4709: specifies that a string should be interpreted literally and not expanded.
                   4710: For example
                   4711: .Ql #{l:#{?pane_in_mode,yes,no}}
                   4712: will be replaced by
                   4713: .Ql #{?pane_in_mode,yes,no} .
1.245     nicm     4714: .Pp
                   4715: The following variables are available, where appropriate:
1.359     nicm     4716: .Bl -column "XXXXXXXXXXXXXXXXXXX" "XXXXX"
                   4717: .It Sy "Variable name" Ta Sy "Alias" Ta Sy "Replaced with"
1.678     nicm     4718: .It Li "alternate_on" Ta "" Ta "1 if pane is in alternate screen"
1.359     nicm     4719: .It Li "alternate_saved_x" Ta "" Ta "Saved cursor X in alternate screen"
                   4720: .It Li "alternate_saved_y" Ta "" Ta "Saved cursor Y in alternate screen"
1.572     nicm     4721: .It Li "buffer_created" Ta "" Ta "Time buffer created"
1.490     nicm     4722: .It Li "buffer_name" Ta "" Ta "Name of buffer"
1.386     nicm     4723: .It Li "buffer_sample" Ta "" Ta "Sample of start of buffer"
1.359     nicm     4724: .It Li "buffer_size" Ta "" Ta "Size of the specified buffer in bytes"
1.572     nicm     4725: .It Li "client_activity" Ta "" Ta "Time client last had activity"
1.699     nicm     4726: .It Li "client_cell_height" Ta "" Ta "Height of each client cell in pixels"
                   4727: .It Li "client_cell_width" Ta "" Ta "Width of each client cell in pixels"
1.646     nicm     4728: .It Li "client_control_mode" Ta "" Ta "1 if client is in control mode"
1.572     nicm     4729: .It Li "client_created" Ta "" Ta "Time client created"
1.542     nicm     4730: .It Li "client_discarded" Ta "" Ta "Bytes discarded when client behind"
1.762     nicm     4731: .It Li "client_flags" Ta "" Ta "List of client flags"
1.359     nicm     4732: .It Li "client_height" Ta "" Ta "Height of client"
1.451     nicm     4733: .It Li "client_key_table" Ta "" Ta "Current key table"
1.359     nicm     4734: .It Li "client_last_session" Ta "" Ta "Name of the client's last session"
1.540     nicm     4735: .It Li "client_name" Ta "" Ta "Name of client"
1.437     nicm     4736: .It Li "client_pid" Ta "" Ta "PID of client process"
1.359     nicm     4737: .It Li "client_prefix" Ta "" Ta "1 if prefix key has been pressed"
                   4738: .It Li "client_readonly" Ta "" Ta "1 if client is readonly"
                   4739: .It Li "client_session" Ta "" Ta "Name of the client's session"
                   4740: .It Li "client_termname" Ta "" Ta "Terminal name of client"
1.754     nicm     4741: .It Li "client_termtype" Ta "" Ta "Terminal type of client, if available"
                   4742: .It Li "client_termfeatures" Ta "" Ta "Terminal features of client, if any"
1.359     nicm     4743: .It Li "client_tty" Ta "" Ta "Pseudo terminal of client"
1.699     nicm     4744: .It Li "client_utf8" Ta "" Ta "1 if client supports UTF-8"
1.359     nicm     4745: .It Li "client_width" Ta "" Ta "Width of client"
1.541     nicm     4746: .It Li "client_written" Ta "" Ta "Bytes written to client"
1.509     nicm     4747: .It Li "command" Ta "" Ta "Name of command in use, if any"
1.646     nicm     4748: .It Li "command_list_alias" Ta "" Ta "Command alias if listing commands"
1.489     nicm     4749: .It Li "command_list_name" Ta "" Ta "Command name if listing commands"
                   4750: .It Li "command_list_usage" Ta "" Ta "Command usage if listing commands"
1.692     nicm     4751: .It Li "copy_cursor_line" Ta "" Ta "Line the cursor is on in copy mode"
                   4752: .It Li "copy_cursor_word" Ta "" Ta "Word under cursor in copy mode"
1.691     nicm     4753: .It Li "copy_cursor_x" Ta "" Ta "Cursor X position in copy mode"
                   4754: .It Li "copy_cursor_y" Ta "" Ta "Cursor Y position in copy mode"
1.646     nicm     4755: .It Li "cursor_character" Ta "" Ta "Character at cursor in pane"
1.359     nicm     4756: .It Li "cursor_flag" Ta "" Ta "Pane cursor flag"
                   4757: .It Li "cursor_x" Ta "" Ta "Cursor X position in pane"
                   4758: .It Li "cursor_y" Ta "" Ta "Cursor Y position in pane"
                   4759: .It Li "history_bytes" Ta "" Ta "Number of bytes in window history"
                   4760: .It Li "history_limit" Ta "" Ta "Maximum window history lines"
1.581     nicm     4761: .It Li "history_size" Ta "" Ta "Size of history in lines"
1.509     nicm     4762: .It Li "hook" Ta "" Ta "Name of running hook, if any"
1.511     nicm     4763: .It Li "hook_pane" Ta "" Ta "ID of pane where hook was run, if any"
1.510     nicm     4764: .It Li "hook_session" Ta "" Ta "ID of session where hook was run, if any"
                   4765: .It Li "hook_session_name" Ta "" Ta "Name of session where hook was run, if any"
                   4766: .It Li "hook_window" Ta "" Ta "ID of window where hook was run, if any"
                   4767: .It Li "hook_window_name" Ta "" Ta "Name of window where hook was run, if any"
1.359     nicm     4768: .It Li "host" Ta "#H" Ta "Hostname of local host"
                   4769: .It Li "host_short" Ta "#h" Ta "Hostname of local host (no domain name)"
                   4770: .It Li "insert_flag" Ta "" Ta "Pane insert flag"
                   4771: .It Li "keypad_cursor_flag" Ta "" Ta "Pane keypad cursor flag"
                   4772: .It Li "keypad_flag" Ta "" Ta "Pane keypad flag"
                   4773: .It Li "line" Ta "" Ta "Line number in the list"
1.646     nicm     4774: .It Li "mouse_all_flag" Ta "" Ta "Pane mouse all flag"
1.359     nicm     4775: .It Li "mouse_any_flag" Ta "" Ta "Pane mouse any flag"
                   4776: .It Li "mouse_button_flag" Ta "" Ta "Pane mouse button flag"
1.676     nicm     4777: .It Li "mouse_line" Ta "" Ta "Line under mouse, if any"
                   4778: .It Li "mouse_sgr_flag" Ta "" Ta "Pane mouse SGR flag"
1.359     nicm     4779: .It Li "mouse_standard_flag" Ta "" Ta "Pane mouse standard flag"
1.676     nicm     4780: .It Li "mouse_utf8_flag" Ta "" Ta "Pane mouse UTF-8 flag"
                   4781: .It Li "mouse_word" Ta "" Ta "Word under mouse, if any"
1.654     nicm     4782: .It Li "mouse_x" Ta "" Ta "Mouse X position, if any"
                   4783: .It Li "mouse_y" Ta "" Ta "Mouse Y position, if any"
1.676     nicm     4784: .It Li "origin_flag" Ta "" Ta "Pane origin flag"
1.359     nicm     4785: .It Li "pane_active" Ta "" Ta "1 if active pane"
1.570     nicm     4786: .It Li "pane_at_bottom" Ta "" Ta "1 if pane is at the bottom of window"
                   4787: .It Li "pane_at_left" Ta "" Ta "1 if pane is at the left of window"
                   4788: .It Li "pane_at_right" Ta "" Ta "1 if pane is at the right of window"
                   4789: .It Li "pane_at_top" Ta "" Ta "1 if pane is at the top of window"
1.396     nicm     4790: .It Li "pane_bottom" Ta "" Ta "Bottom of pane"
1.359     nicm     4791: .It Li "pane_current_command" Ta "" Ta "Current command if available"
1.733     nicm     4792: .It Li "pane_current_path" Ta "" Ta "Current path if available"
1.359     nicm     4793: .It Li "pane_dead" Ta "" Ta "1 if pane is dead"
1.411     nicm     4794: .It Li "pane_dead_status" Ta "" Ta "Exit status of process in dead pane"
1.696     nicm     4795: .It Li "pane_format" Ta "" Ta "1 if format is for a pane"
1.359     nicm     4796: .It Li "pane_height" Ta "" Ta "Height of pane"
                   4797: .It Li "pane_id" Ta "#D" Ta "Unique pane ID"
1.678     nicm     4798: .It Li "pane_in_mode" Ta "" Ta "1 if pane is in a mode"
1.646     nicm     4799: .It Li "pane_index" Ta "#P" Ta "Index of pane"
1.678     nicm     4800: .It Li "pane_input_off" Ta "" Ta "1 if input to pane is disabled"
1.792     nicm     4801: .It Li "pane_last" Ta "" Ta "1 if last pane"
1.396     nicm     4802: .It Li "pane_left" Ta "" Ta "Left of pane"
1.650     nicm     4803: .It Li "pane_marked" Ta "" Ta "1 if this is the marked pane"
                   4804: .It Li "pane_marked_set" Ta "" Ta "1 if a marked pane is set"
1.678     nicm     4805: .It Li "pane_mode" Ta "" Ta "Name of pane mode, if any"
1.761     nicm     4806: .It Li "pane_path" Ta "" Ta "Path of pane (can be set by application)"
1.359     nicm     4807: .It Li "pane_pid" Ta "" Ta "PID of first process in pane"
1.567     nicm     4808: .It Li "pane_pipe" Ta "" Ta "1 if pane is being piped"
1.396     nicm     4809: .It Li "pane_right" Ta "" Ta "Right of pane"
1.546     nicm     4810: .It Li "pane_search_string" Ta "" Ta "Last search string in copy mode"
1.743     nicm     4811: .It Li "pane_skipped" Ta "" Ta "Bytes skipped as not visible in pane"
1.359     nicm     4812: .It Li "pane_start_command" Ta "" Ta "Command pane started with"
1.678     nicm     4813: .It Li "pane_synchronized" Ta "" Ta "1 if pane is synchronized"
1.359     nicm     4814: .It Li "pane_tabs" Ta "" Ta "Pane tab positions"
1.696     nicm     4815: .It Li "pane_title" Ta "#T" Ta "Title of pane (can be set by application)"
1.396     nicm     4816: .It Li "pane_top" Ta "" Ta "Top of pane"
1.359     nicm     4817: .It Li "pane_tty" Ta "" Ta "Pseudo terminal of pane"
                   4818: .It Li "pane_width" Ta "" Ta "Width of pane"
1.743     nicm     4819: .It Li "pane_written" Ta "" Ta "Bytes written by pane (aside from redrawing)"
1.721     nicm     4820: .It Li "pid" Ta "" Ta "Server PID"
                   4821: .It Li "popup_key" Ta "" Ta "Key pressed in popup"
                   4822: .It Li "popup_mouse_x" Ta "" Ta "Mouse X position in popup"
                   4823: .It Li "popup_mouse_y" Ta "" Ta "Mouse Y position in popup"
1.606     nicm     4824: .It Li "rectangle_toggle" Ta "" Ta "1 if rectangle selection is activated"
1.646     nicm     4825: .It Li "scroll_position" Ta "" Ta "Scroll position in copy mode"
1.359     nicm     4826: .It Li "scroll_region_lower" Ta "" Ta "Bottom of scroll region in pane"
                   4827: .It Li "scroll_region_upper" Ta "" Ta "Top of scroll region in pane"
1.782     nicm     4828: .It Li "search_present" Ta "" Ta "1 if search started in copy mode"
                   4829: .It Li "search_match" Ta "" Ta "Search match if any"
1.713     nicm     4830: .It Li "selection_active" Ta "" Ta "1 if selection started and changes with the cursor in copy mode"
1.691     nicm     4831: .It Li "selection_end_x" Ta "" Ta "X position of the end of the selection"
                   4832: .It Li "selection_end_y" Ta "" Ta "Y position of the end of the selection"
1.571     nicm     4833: .It Li "selection_present" Ta "" Ta "1 if selection started in copy mode"
1.691     nicm     4834: .It Li "selection_start_x" Ta "" Ta "X position of the start of the selection"
                   4835: .It Li "selection_start_y" Ta "" Ta "Y position of the start of the selection"
1.646     nicm     4836: .It Li "session_activity" Ta "" Ta "Time of session last activity"
1.430     nicm     4837: .It Li "session_alerts" Ta "" Ta "List of window indexes with alerts"
1.382     nicm     4838: .It Li "session_attached" Ta "" Ta "Number of clients session is attached to"
1.702     nicm     4839: .It Li "session_attached_list" Ta "" Ta "List of clients session is attached to"
1.572     nicm     4840: .It Li "session_created" Ta "" Ta "Time session created"
1.696     nicm     4841: .It Li "session_format" Ta "" Ta "1 if format is for a session"
1.536     nicm     4842: .It Li "session_group" Ta "" Ta "Name of session group"
1.702     nicm     4843: .It Li "session_group_attached" Ta "" Ta "Number of clients sessions in group are attached to"
                   4844: .It Li "session_group_attached_list" Ta "" Ta "List of clients sessions in group are attached to"
1.646     nicm     4845: .It Li "session_group_list" Ta "" Ta "List of sessions in group"
1.702     nicm     4846: .It Li "session_group_many_attached" Ta "" Ta "1 if multiple clients attached to sessions in group"
1.586     nicm     4847: .It Li "session_group_size" Ta "" Ta "Size of session group"
1.359     nicm     4848: .It Li "session_grouped" Ta "" Ta "1 if session in a group"
                   4849: .It Li "session_id" Ta "" Ta "Unique session ID"
1.646     nicm     4850: .It Li "session_last_attached" Ta "" Ta "Time session last attached"
1.382     nicm     4851: .It Li "session_many_attached" Ta "" Ta "1 if multiple clients attached"
1.748     nicm     4852: .It Li "session_marked" Ta "" Ta "1 if this session contains the marked pane"
1.359     nicm     4853: .It Li "session_name" Ta "#S" Ta "Name of session"
1.725     nicm     4854: .It Li "session_path" Ta "" Ta "Working directory of session"
1.548     nicm     4855: .It Li "session_stack" Ta "" Ta "Window indexes in most recent order"
1.359     nicm     4856: .It Li "session_windows" Ta "" Ta "Number of windows in session"
1.487     nicm     4857: .It Li "socket_path" Ta "" Ta "Server socket path"
1.465     nicm     4858: .It Li "start_time" Ta "" Ta "Server start time"
1.708     nicm     4859: .It Li "version" Ta "" Ta "Server version"
1.646     nicm     4860: .It Li "window_active" Ta "" Ta "1 if window active"
1.702     nicm     4861: .It Li "window_active_clients" Ta "" Ta "Number of clients viewing this window"
                   4862: .It Li "window_active_clients_list" Ta "" Ta "List of clients viewing this window"
                   4863: .It Li "window_active_sessions" Ta "" Ta "Number of sessions on which this window is active"
                   4864: .It Li "window_active_sessions_list" Ta "" Ta "List of sessions on which this window is active"
1.572     nicm     4865: .It Li "window_activity" Ta "" Ta "Time of window last activity"
1.487     nicm     4866: .It Li "window_activity_flag" Ta "" Ta "1 if window has activity"
1.366     nicm     4867: .It Li "window_bell_flag" Ta "" Ta "1 if window has bell"
1.642     nicm     4868: .It Li "window_bigger" Ta "" Ta "1 if window is larger than client"
1.700     nicm     4869: .It Li "window_cell_height" Ta "" Ta "Height of each cell in pixels"
                   4870: .It Li "window_cell_width" Ta "" Ta "Width of each cell in pixels"
1.621     nicm     4871: .It Li "window_end_flag" Ta "" Ta "1 if window has the highest index"
1.359     nicm     4872: .It Li "window_flags" Ta "#F" Ta "Window flags"
1.696     nicm     4873: .It Li "window_format" Ta "" Ta "1 if format is for a window"
1.359     nicm     4874: .It Li "window_height" Ta "" Ta "Height of window"
                   4875: .It Li "window_id" Ta "" Ta "Unique window ID"
                   4876: .It Li "window_index" Ta "#I" Ta "Index of window"
1.400     nicm     4877: .It Li "window_last_flag" Ta "" Ta "1 if window is the last used"
1.460     nicm     4878: .It Li "window_layout" Ta "" Ta "Window layout description, ignoring zoomed window panes"
1.426     nicm     4879: .It Li "window_linked" Ta "" Ta "1 if window is linked across sessions"
1.702     nicm     4880: .It Li "window_linked_sessions" Ta "" Ta "Number of sessions this window is linked to"
                   4881: .It Li "window_linked_sessions_list" Ta "" Ta "List of sessions this window is linked to"
1.687     nicm     4882: .It Li "window_marked_flag" Ta "" Ta "1 if window contains the marked pane"
1.359     nicm     4883: .It Li "window_name" Ta "#W" Ta "Name of window"
1.642     nicm     4884: .It Li "window_offset_x" Ta "" Ta "X offset into window if larger than client"
                   4885: .It Li "window_offset_y" Ta "" Ta "Y offset into window if larger than client"
1.359     nicm     4886: .It Li "window_panes" Ta "" Ta "Number of panes in window"
1.366     nicm     4887: .It Li "window_silence_flag" Ta "" Ta "1 if window has silence alert"
1.548     nicm     4888: .It Li "window_stack_index" Ta "" Ta "Index in session most recent stack"
1.621     nicm     4889: .It Li "window_start_flag" Ta "" Ta "1 if window has the lowest index"
1.460     nicm     4890: .It Li "window_visible_layout" Ta "" Ta "Window layout description, respecting zoomed window panes"
1.359     nicm     4891: .It Li "window_width" Ta "" Ta "Width of window"
1.400     nicm     4892: .It Li "window_zoomed_flag" Ta "" Ta "1 if window is zoomed"
1.359     nicm     4893: .It Li "wrap_flag" Ta "" Ta "Pane wrap flag"
1.245     nicm     4894: .El
1.623     nicm     4895: .Sh STYLES
                   4896: .Nm
                   4897: offers various options to specify the colour and attributes of aspects of the
                   4898: interface, for example
                   4899: .Ic status-style
                   4900: for the status line.
                   4901: In addition, embedded styles may be specified in format options, such as
1.701     nicm     4902: .Ic status-left ,
1.623     nicm     4903: by enclosing them in
                   4904: .Ql #[
                   4905: and
1.639     nicm     4906: .Ql \&] .
1.623     nicm     4907: .Pp
                   4908: A style may be the single term
                   4909: .Ql default
1.688     nicm     4910: to specify the default style (which may come from an option, for example
                   4911: .Ic status-style
                   4912: in the status line) or a space
1.630     nicm     4913: or comma separated list of the following:
1.623     nicm     4914: .Bl -tag -width Ds
                   4915: .It Ic fg=colour
                   4916: Set the foreground colour.
                   4917: The colour is one of:
                   4918: .Ic black ,
                   4919: .Ic red ,
                   4920: .Ic green ,
                   4921: .Ic yellow ,
                   4922: .Ic blue ,
                   4923: .Ic magenta ,
                   4924: .Ic cyan ,
                   4925: .Ic white ;
                   4926: if supported the bright variants
                   4927: .Ic brightred ,
                   4928: .Ic brightgreen ,
                   4929: .Ic brightyellow ;
                   4930: .Ic colour0
                   4931: to
                   4932: .Ic colour255
                   4933: from the 256-colour set;
                   4934: .Ic default
                   4935: for the default colour;
                   4936: .Ic terminal
                   4937: for the terminal default colour; or a hexadecimal RGB string such as
                   4938: .Ql #ffffff .
                   4939: .It Ic bg=colour
                   4940: Set the background colour.
                   4941: .It Ic none
                   4942: Set no attributes (turn off any active attributes).
1.752     nicm     4943: .It Xo Ic acs ,
                   4944: .Ic bright
1.625     nicm     4945: (or
                   4946: .Ic bold ) ,
1.623     nicm     4947: .Ic dim ,
                   4948: .Ic underscore ,
                   4949: .Ic blink ,
                   4950: .Ic reverse ,
                   4951: .Ic hidden ,
                   4952: .Ic italics ,
1.649     nicm     4953: .Ic overline ,
1.623     nicm     4954: .Ic strikethrough ,
                   4955: .Ic double-underscore ,
                   4956: .Ic curly-underscore ,
                   4957: .Ic dotted-underscore ,
                   4958: .Ic dashed-underscore
                   4959: .Xc
                   4960: Set an attribute.
                   4961: Any of the attributes may be prefixed with
                   4962: .Ql no
                   4963: to unset.
1.752     nicm     4964: .Ic acs
                   4965: is the terminal alternate character set.
1.625     nicm     4966: .It Xo Ic align=left
                   4967: (or
                   4968: .Ic noalign ) ,
                   4969: .Ic align=centre ,
                   4970: .Ic align=right
                   4971: .Xc
                   4972: Align text to the left, centre or right of the available space if appropriate.
1.675     nicm     4973: .It Ic fill=colour
1.674     nicm     4974: Fill the available space with a background colour if appropriate.
1.625     nicm     4975: .It Xo Ic list=on ,
                   4976: .Ic list=focus ,
                   4977: .Ic list=left-marker ,
1.661     nicm     4978: .Ic list=right-marker ,
1.625     nicm     4979: .Ic nolist
                   4980: .Xc
                   4981: Mark the position of the various window list components in the
                   4982: .Ic status-format
                   4983: option:
                   4984: .Ic list=on
                   4985: marks the start of the list;
                   4986: .Ic list=focus
                   4987: is the part of the list that should be kept in focus if the entire list won't fit
                   4988: in the available space (typically the current window);
                   4989: .Ic list=left-marker
                   4990: and
                   4991: .Ic list=right-marker
                   4992: mark the text to be used to mark that text has been trimmed from the left or
                   4993: right of the list if there is not enough space.
1.688     nicm     4994: .It Xo Ic push-default ,
                   4995: .Ic pop-default
                   4996: .Xc
                   4997: Store the current colours and attributes as the default or reset to the previous
                   4998: default.
                   4999: A
                   5000: .Ic push-default
                   5001: affects any subsequent use of the
                   5002: .Ic default
                   5003: term until a
                   5004: .Ic pop-default .
                   5005: Only one default may be pushed (each
                   5006: .Ic push-default
                   5007: replaces the previous saved default).
1.625     nicm     5008: .It Xo Ic range=left ,
                   5009: .Ic range=right ,
                   5010: .Ic range=window|X ,
                   5011: .Ic norange
                   5012: .Xc
                   5013: Mark a range in the
1.651     nicm     5014: .Ic status-format
1.625     nicm     5015: option.
                   5016: .Ic range=left
                   5017: and
                   5018: .Ic range=right
                   5019: are the text used for the
                   5020: .Ql StatusLeft
                   5021: and
                   5022: .Ql StatusRight
                   5023: mouse keys.
                   5024: .Ic range=window|X
                   5025: is the range for a window passed to the
                   5026: .Ql Status
                   5027: mouse key, where
                   5028: .Ql X
                   5029: is a window index.
1.623     nicm     5030: .El
                   5031: .Pp
                   5032: Examples are:
                   5033: .Bd -literal -offset indent
1.630     nicm     5034: fg=yellow bold underscore blink
1.623     nicm     5035: bg=black,fg=default,noreverse
                   5036: .Ed
1.261     nicm     5037: .Sh NAMES AND TITLES
                   5038: .Nm
                   5039: distinguishes between names and titles.
                   5040: Windows and sessions have names, which may be used to specify them in targets
                   5041: and are displayed in the status line and various lists: the name is the
                   5042: .Nm
                   5043: identifier for a window or session.
                   5044: Only panes have titles.
1.577     nicm     5045: A pane's title is typically set by the program running inside the pane using
                   5046: an escape sequence (like it would set the
1.261     nicm     5047: .Xr xterm 1
1.577     nicm     5048: window title in
1.578     nicm     5049: .Xr X 7 ) .
1.268     nicm     5050: Windows themselves do not have titles - a window's title is the title of its
1.261     nicm     5051: active pane.
                   5052: .Nm
                   5053: itself may set the title of the terminal in which the client is running, see
                   5054: the
                   5055: .Ic set-titles
                   5056: option.
                   5057: .Pp
                   5058: A session's name is set with the
                   5059: .Ic new-session
                   5060: and
                   5061: .Ic rename-session
                   5062: commands.
                   5063: A window's name is set with one of:
                   5064: .Bl -enum -width Ds
                   5065: .It
                   5066: A command argument (such as
                   5067: .Fl n
                   5068: for
                   5069: .Ic new-window
                   5070: or
                   5071: .Ic new-session ) .
                   5072: .It
1.597     nicm     5073: An escape sequence (if the
                   5074: .Ic allow-rename
                   5075: option is turned on):
1.261     nicm     5076: .Bd -literal -offset indent
                   5077: $ printf '\e033kWINDOW_NAME\e033\e\e'
                   5078: .Ed
                   5079: .It
                   5080: Automatic renaming, which sets the name to the active command in the window's
                   5081: active pane.
                   5082: See the
                   5083: .Ic automatic-rename
                   5084: option.
                   5085: .El
                   5086: .Pp
                   5087: When a pane is first created, its title is the hostname.
1.612     nicm     5088: A pane's title can be set via the title setting escape sequence, for example:
1.261     nicm     5089: .Bd -literal -offset indent
                   5090: $ printf '\e033]2;My Title\e033\e\e'
                   5091: .Ed
1.577     nicm     5092: .Pp
                   5093: It can also be modified with the
                   5094: .Ic select-pane
                   5095: .Fl T
                   5096: command.
1.644     schwarze 5097: .Sh GLOBAL AND SESSION ENVIRONMENT
1.63      nicm     5098: When the server is started,
                   5099: .Nm
                   5100: copies the environment into the
                   5101: .Em global environment ;
                   5102: in addition, each session has a
                   5103: .Em session environment .
1.193     nicm     5104: When a window is created, the session and global environments are merged.
                   5105: If a variable exists in both, the value from the session environment is used.
                   5106: The result is the initial environment passed to the new process.
1.63      nicm     5107: .Pp
                   5108: The
                   5109: .Ic update-environment
                   5110: session option may be used to update the session environment from the client
                   5111: when a new session is created or an old reattached.
                   5112: .Nm
                   5113: also initialises the
                   5114: .Ev TMUX
                   5115: variable with some internal information to allow commands to be executed
                   5116: from inside, and the
                   5117: .Ev TERM
                   5118: variable with the correct terminal setting of
                   5119: .Ql screen .
                   5120: .Pp
1.728     nicm     5121: Variables in both session and global environments may be marked as hidden.
                   5122: Hidden variables are not passed into the environment of new processes and
                   5123: instead can only be used by tmux itself (for example in formats, see the
                   5124: .Sx FORMATS
                   5125: section).
                   5126: .Pp
1.63      nicm     5127: Commands to alter and view the environment are:
                   5128: .Bl -tag -width Ds
                   5129: .It Xo Ic set-environment
1.793     nicm     5130: .Op Fl Fhgru
1.63      nicm     5131: .Op Fl t Ar target-session
                   5132: .Ar name Op Ar value
                   5133: .Xc
1.115     nicm     5134: .D1 (alias: Ic setenv )
1.63      nicm     5135: Set or unset an environment variable.
                   5136: If
                   5137: .Fl g
                   5138: is used, the change is made in the global environment; otherwise, it is applied
                   5139: to the session environment for
                   5140: .Ar target-session .
1.793     nicm     5141: If
                   5142: .Fl F
                   5143: is present, then
                   5144: .Ar value
                   5145: is expanded as a format.
1.63      nicm     5146: The
                   5147: .Fl u
                   5148: flag unsets a variable.
                   5149: .Fl r
                   5150: indicates the variable is to be removed from the environment before starting a
                   5151: new process.
1.728     nicm     5152: .Fl h
                   5153: marks the variable as hidden.
1.63      nicm     5154: .It Xo Ic show-environment
1.728     nicm     5155: .Op Fl hgs
1.63      nicm     5156: .Op Fl t Ar target-session
1.286     nicm     5157: .Op Ar variable
1.63      nicm     5158: .Xc
1.115     nicm     5159: .D1 (alias: Ic showenv )
1.63      nicm     5160: Display the environment for
                   5161: .Ar target-session
                   5162: or the global environment with
                   5163: .Fl g .
1.286     nicm     5164: If
                   5165: .Ar variable
                   5166: is omitted, all variables are shown.
1.63      nicm     5167: Variables removed from the environment are prefixed with
                   5168: .Ql - .
1.442     nicm     5169: If
                   5170: .Fl s
                   5171: is used, the output is formatted as a set of Bourne shell commands.
1.728     nicm     5172: .Fl h
                   5173: shows hidden variables (omitted by default).
1.57      jmc      5174: .El
                   5175: .Sh STATUS LINE
                   5176: .Nm
                   5177: includes an optional status line which is displayed in the bottom line of each
                   5178: terminal.
1.626     nicm     5179: .Pp
                   5180: By default, the status line is enabled and one line in height (it may be
                   5181: disabled or made multiple lines with the
1.57      jmc      5182: .Ic status
                   5183: session option) and contains, from left-to-right: the name of the current
1.261     nicm     5184: session in square brackets; the window list; the title of the active pane
                   5185: in double quotes; and the time and date.
1.57      jmc      5186: .Pp
1.626     nicm     5187: Each line of the status line is configured with the
                   5188: .Ic status-format
                   5189: option.
                   5190: The default is made of three parts: configurable left and right sections (which
                   5191: may contain dynamic content such as the time or output from a shell command,
                   5192: see the
1.57      jmc      5193: .Ic status-left ,
                   5194: .Ic status-left-length ,
                   5195: .Ic status-right ,
                   5196: and
                   5197: .Ic status-right-length
                   5198: options below), and a central window list.
1.125     nicm     5199: By default, the window list shows the index, name and (if any) flag of the
                   5200: windows present in the current session in ascending numerical order.
                   5201: It may be customised with the
                   5202: .Ar window-status-format
                   5203: and
                   5204: .Ar window-status-current-format
                   5205: options.
1.57      jmc      5206: The flag is one of the following symbols appended to the window name:
                   5207: .Bl -column "Symbol" "Meaning" -offset indent
                   5208: .It Sy "Symbol" Ta Sy "Meaning"
                   5209: .It Li "*" Ta "Denotes the current window."
                   5210: .It Li "-" Ta "Marks the last window (previously selected)."
1.574     nicm     5211: .It Li "#" Ta "Window activity is monitored and activity has been detected."
                   5212: .It Li "\&!" Ta "Window bells are monitored and a bell has occurred in the window."
1.192     nicm     5213: .It Li "~" Ta "The window has been silent for the monitor-silence interval."
1.432     nicm     5214: .It Li "M" Ta "The window contains the marked pane."
1.349     nicm     5215: .It Li "Z" Ta "The window's active pane is zoomed."
1.57      jmc      5216: .El
                   5217: .Pp
                   5218: The # symbol relates to the
                   5219: .Ic monitor-activity
1.388     nicm     5220: window option.
1.57      jmc      5221: The window name is printed in inverted colours if an alert (bell, activity or
1.388     nicm     5222: silence) is present.
1.57      jmc      5223: .Pp
1.131     nicm     5224: The colour and attributes of the status line may be configured, the entire
                   5225: status line using the
1.378     nicm     5226: .Ic status-style
                   5227: session option and individual windows using the
                   5228: .Ic window-status-style
                   5229: window option.
1.57      jmc      5230: .Pp
1.131     nicm     5231: The status line is automatically refreshed at interval if it has changed, the
                   5232: interval may be controlled with the
1.57      jmc      5233: .Ic status-interval
                   5234: session option.
                   5235: .Pp
                   5236: Commands related to the status line are as follows:
                   5237: .Bl -tag -width Ds
                   5238: .It Xo Ic command-prompt
1.758     nicm     5239: .Op Fl 1ikNTW
1.235     nicm     5240: .Op Fl I Ar inputs
1.73      nicm     5241: .Op Fl p Ar prompts
1.57      jmc      5242: .Op Fl t Ar target-client
                   5243: .Op Ar template
                   5244: .Xc
                   5245: Open the command prompt in a client.
                   5246: This may be used from inside
                   5247: .Nm
                   5248: to execute commands interactively.
1.231     nicm     5249: .Pp
1.57      jmc      5250: If
                   5251: .Ar template
1.73      nicm     5252: is specified, it is used as the command.
1.235     nicm     5253: If present,
                   5254: .Fl I
                   5255: is a comma-separated list of the initial text for each prompt.
1.73      nicm     5256: If
                   5257: .Fl p
                   5258: is given,
                   5259: .Ar prompts
                   5260: is a comma-separated list of prompts which are displayed in order; otherwise
                   5261: a single prompt is displayed, constructed from
                   5262: .Ar template
                   5263: if it is present, or
                   5264: .Ql \&:
                   5265: if not.
1.231     nicm     5266: .Pp
1.73      nicm     5267: Before the command is executed, the first occurrence of the string
                   5268: .Ql %%
1.74      jmc      5269: and all occurrences of
1.73      nicm     5270: .Ql %1
1.492     nicm     5271: are replaced by the response to the first prompt, all
1.73      nicm     5272: .Ql %2
                   5273: are replaced with the response to the second prompt, and so on for further
1.74      jmc      5274: prompts.
                   5275: Up to nine prompt responses may be replaced
                   5276: .Po
                   5277: .Ql %1
1.73      nicm     5278: to
1.74      jmc      5279: .Ql %9
                   5280: .Pc .
1.513     nicm     5281: .Ql %%%
                   5282: is like
                   5283: .Ql %%
                   5284: but any quotation marks are escaped.
1.497     nicm     5285: .Pp
                   5286: .Fl 1
                   5287: makes the prompt only accept one key press, in this case the resulting input
                   5288: is a single character.
1.706     nicm     5289: .Fl k
                   5290: is like
                   5291: .Fl 1
                   5292: but the key press is translated to a key name.
1.678     nicm     5293: .Fl N
                   5294: makes the prompt only accept numeric key presses.
1.517     nicm     5295: .Fl i
                   5296: executes the command every time the prompt input changes instead of when the
                   5297: user exits the command prompt.
1.758     nicm     5298: .Fl T
                   5299: tells
                   5300: .Nm
                   5301: that the prompt is for a target which affects what completions are offered when
                   5302: .Em Tab
                   5303: is pressed;
                   5304: .Fl W
                   5305: is similar but indicates the prompt is for a window.
1.500     nicm     5306: .Pp
                   5307: The following keys have a special meaning in the command prompt, depending
                   5308: on the value of the
                   5309: .Ic status-keys
                   5310: option:
                   5311: .Bl -column "FunctionXXXXXXXXXXXXXXXXXXXXXXXXX" "viXXXX" "emacsX" -offset indent
                   5312: .It Sy "Function" Ta Sy "vi" Ta Sy "emacs"
1.715     nicm     5313: .It Li "Cancel command prompt" Ta "q" Ta "Escape"
1.678     nicm     5314: .It Li "Delete from cursor to start of word" Ta "" Ta "C-w"
1.500     nicm     5315: .It Li "Delete entire command" Ta "d" Ta "C-u"
                   5316: .It Li "Delete from cursor to end" Ta "D" Ta "C-k"
                   5317: .It Li "Execute command" Ta "Enter" Ta "Enter"
                   5318: .It Li "Get next command from history" Ta "" Ta "Down"
                   5319: .It Li "Get previous command from history" Ta "" Ta "Up"
                   5320: .It Li "Insert top paste buffer" Ta "p" Ta "C-y"
                   5321: .It Li "Look for completions" Ta "Tab" Ta "Tab"
                   5322: .It Li "Move cursor left" Ta "h" Ta "Left"
                   5323: .It Li "Move cursor right" Ta "l" Ta "Right"
                   5324: .It Li "Move cursor to end" Ta "$" Ta "C-e"
                   5325: .It Li "Move cursor to next word" Ta "w" Ta "M-f"
                   5326: .It Li "Move cursor to previous word" Ta "b" Ta "M-b"
                   5327: .It Li "Move cursor to start" Ta "0" Ta "C-a"
                   5328: .It Li "Transpose characters" Ta "" Ta "C-t"
                   5329: .El
1.57      jmc      5330: .It Xo Ic confirm-before
1.238     nicm     5331: .Op Fl p Ar prompt
1.57      jmc      5332: .Op Fl t Ar target-client
                   5333: .Ar command
                   5334: .Xc
                   5335: .D1 (alias: Ic confirm )
                   5336: Ask for confirmation before executing
                   5337: .Ar command .
1.238     nicm     5338: If
                   5339: .Fl p
                   5340: is given,
                   5341: .Ar prompt
                   5342: is the prompt to display; otherwise a prompt is constructed from
                   5343: .Ar command .
                   5344: It may contain the special character sequences supported by the
                   5345: .Ic status-left
                   5346: option.
                   5347: .Pp
1.57      jmc      5348: This command works only from inside
                   5349: .Nm .
1.646     nicm     5350: .It Xo Ic display-menu
1.800     nicm     5351: .Op Fl O
1.646     nicm     5352: .Op Fl c Ar target-client
                   5353: .Op Fl t Ar target-pane
                   5354: .Op Fl T Ar title
                   5355: .Op Fl x Ar position
                   5356: .Op Fl y Ar position
1.657     nicm     5357: .Ar name
                   5358: .Ar key
                   5359: .Ar command
                   5360: .Ar ...
1.646     nicm     5361: .Xc
1.651     nicm     5362: .D1 (alias: Ic menu )
1.646     nicm     5363: Display a menu on
                   5364: .Ar target-client .
                   5365: .Ar target-pane
                   5366: gives the target for any commands run from the menu.
                   5367: .Pp
1.657     nicm     5368: A menu is passed as a series of arguments: first the menu item name,
                   5369: second the key shortcut (or empty for none) and third the command
                   5370: to run when the menu item is chosen.
                   5371: The name and command are formats, see the
1.646     nicm     5372: .Sx FORMATS
                   5373: and
                   5374: .Sx STYLES
                   5375: sections.
1.658     nicm     5376: If the name begins with a hyphen (-), then the item is disabled (shown dim) and
                   5377: may not be chosen.
1.657     nicm     5378: The name may be empty for a separator line, in which case both the key and
                   5379: command should be omitted.
1.646     nicm     5380: .Pp
                   5381: .Fl T
                   5382: is a format for the menu title (see
                   5383: .Sx FORMATS ) .
                   5384: .Pp
                   5385: .Fl x
                   5386: and
                   5387: .Fl y
                   5388: give the position of the menu.
                   5389: Both may be a row or column number, or one of the following special values:
                   5390: .Bl -column "XXXXX" "XXXX" -offset indent
                   5391: .It Sy "Value" Ta Sy "Flag" Ta Sy "Meaning"
1.719     nicm     5392: .It Li "C" Ta "Both" Ta "The centre of the terminal"
1.646     nicm     5393: .It Li "R" Ta Fl x Ta "The right side of the terminal"
                   5394: .It Li "P" Ta "Both" Ta "The bottom left of the pane"
                   5395: .It Li "M" Ta "Both" Ta "The mouse position"
1.730     nicm     5396: .It Li "W" Ta "Both" Ta "The window position on the status line"
1.646     nicm     5397: .It Li "S" Ta Fl y Ta "The line above or below the status line"
1.802     nicm     5398: .El
                   5399: .Pp
                   5400: Or a format, which is expanded including the following additional variables:
                   5401: .Bl -column "XXXXXXXXXXXXXXXXXXXXXXXXXX" -offset indent
                   5402: .It Sy "Variable name" Ta Sy "Replaced with"
                   5403: .It Li "popup_centre_x" Ta "Centered in the client"
                   5404: .It Li "popup_centre_y" Ta "Centered in the client"
                   5405: .It Li "popup_height" Ta "Height of menu or popup"
                   5406: .It Li "popup_mouse_bottom" Ta "Bottom of at the mouse"
                   5407: .It Li "popup_mouse_centre_x" Ta "Horizontal centre at the mouse"
                   5408: .It Li "popup_mouse_centre_y" Ta "Vertical centre at the mouse"
                   5409: .It Li "popup_mouse_top" Ta "Top at the mouse"
                   5410: .It Li "popup_mouse_x" Ta "Mouse X position"
                   5411: .It Li "popup_mouse_y" Ta "Mouse Y position"
                   5412: .It Li "popup_pane_bottom" Ta "Bottom of the pane"
                   5413: .It Li "popup_pane_left" Ta "Left of the pane"
                   5414: .It Li "popup_pane_right" Ta "Right of the pane"
                   5415: .It Li "popup_pane_top" Ta "Top of the pane"
                   5416: .It Li "popup_status_line_y" Ta "Above or below the status line"
                   5417: .It Li "popup_width" Ta "Width of menu or popup"
                   5418: .It Li "popup_window_status_line_x" Ta "At the window position in status line"
                   5419: .It Li "popup_window_status_line_y" Ta "At the status line showing the window"
1.646     nicm     5420: .El
                   5421: .Pp
                   5422: Each menu consists of items followed by a key shortcut shown in brackets.
                   5423: If the menu is too large to fit on the terminal, it is not displayed.
                   5424: Pressing the key shortcut chooses the corresponding item.
1.800     nicm     5425: If the mouse is enabled and the menu is opened from a mouse key binding,
                   5426: releasing the mouse button with an item selected chooses that item and
                   5427: releasing the mouse button without an item selected closes the menu.
                   5428: .Fl O
                   5429: changes this behaviour so that the menu does not close when the mouse button is
                   5430: released without an item selected the menu is not closed and a mouse button
                   5431: must be clicked to choose an item.
                   5432: .Pp
1.646     nicm     5433: The following keys are also available:
                   5434: .Bl -column "Key" "Function" -offset indent
                   5435: .It Sy "Key" Ta Sy "Function"
                   5436: .It Li "Enter" Ta "Choose selected item"
                   5437: .It Li "Up" Ta "Select previous item"
                   5438: .It Li "Down" Ta "Select next item"
                   5439: .It Li "q" Ta "Exit menu"
                   5440: .El
1.57      jmc      5441: .It Xo Ic display-message
1.643     nicm     5442: .Op Fl aIpv
1.215     nicm     5443: .Op Fl c Ar target-client
1.790     nicm     5444: .Op Fl d Ar delay
1.215     nicm     5445: .Op Fl t Ar target-pane
1.57      jmc      5446: .Op Ar message
                   5447: .Xc
                   5448: .D1 (alias: Ic display )
1.127     nicm     5449: Display a message.
                   5450: If
                   5451: .Fl p
                   5452: is given, the output is printed to stdout, otherwise it is displayed in the
                   5453: .Ar target-client
1.790     nicm     5454: status line for up to
                   5455: .Ar delay
                   5456: milliseconds.
                   5457: If
                   5458: .Ar delay
                   5459: is not given, the
                   5460: .Ic message-time
                   5461: option is used; a delay of zero waits for a key press.
1.122     nicm     5462: The format of
1.124     jmc      5463: .Ar message
1.275     nicm     5464: is described in the
                   5465: .Sx FORMATS
                   5466: section; information is taken from
1.215     nicm     5467: .Ar target-pane
                   5468: if
                   5469: .Fl t
1.678     nicm     5470: is given, otherwise the active pane.
1.622     nicm     5471: .Pp
1.624     nicm     5472: .Fl v
                   5473: prints verbose logging as the format is parsed and
                   5474: .Fl a
                   5475: lists the format variables and their values.
1.643     nicm     5476: .Pp
                   5477: .Fl I
                   5478: forwards any input read from stdin to the empty pane given by
                   5479: .Ar target-pane .
1.721     nicm     5480: .It Xo Ic display-popup
                   5481: .Op Fl CEK
                   5482: .Op Fl c Ar target-client
                   5483: .Op Fl d Ar start-directory
                   5484: .Op Fl h Ar height
                   5485: .Op Fl R Ar shell-command
                   5486: .Op Fl t Ar target-pane
                   5487: .Op Fl w Ar width
                   5488: .Op Fl x Ar position
                   5489: .Op Fl y Ar position
                   5490: .Op Ar command Ar line Ar ...
                   5491: .Xc
                   5492: .D1 (alias: Ic popup )
                   5493: Display a popup on
                   5494: .Ar target-client .
                   5495: A popup is a rectangular box drawn over the top of any panes.
                   5496: Panes are not updated while a popup is present.
                   5497: The popup content may be given in two ways:
                   5498: .Bl -enum -offset Ds
                   5499: .It
                   5500: A set of lines as arguments.
                   5501: Each line is a format which is expanded using
                   5502: .Ar target-pane
                   5503: as the target.
                   5504: If a line contains newlines it is split into multiple lines.
                   5505: Lines may use styles, see the
                   5506: .Sx STYLES
                   5507: section.
                   5508: .It
                   5509: A shell command given by
                   5510: .Fl R
                   5511: which is run and any output shown in the pane.
                   5512: .El
                   5513: .Pp
                   5514: The first argument,
                   5515: .Ar command ,
                   5516: is a
                   5517: .Nm
                   5518: command which is run when a key is pressed.
                   5519: The key is available in the
                   5520: .Ql popup_key
                   5521: format.
                   5522: After
                   5523: .Ar command
                   5524: is run, the popup is closed.
                   5525: It may be empty to discard any key presses.
                   5526: If
                   5527: .Fl K
                   5528: is given together with
1.722     nicm     5529: .Fl R ,
1.721     nicm     5530: key presses are instead passed to the
                   5531: .Fl R
                   5532: shell command.
                   5533: .Fl E
                   5534: closes the popup automatically when
                   5535: .Ar shell-command
                   5536: exits.
1.723     nicm     5537: Two
                   5538: .Fl E
                   5539: closes the popup only if
                   5540: .Ar shell-command
                   5541: exited with success.
1.721     nicm     5542: With
                   5543: .Fl K ,
                   5544: .Ql Escape
                   5545: and
                   5546: .Ql C-c
                   5547: close the popup unless
                   5548: .Fl E
                   5549: is also given.
                   5550: .Pp
                   5551: .Fl x
                   5552: and
                   5553: .Fl y
                   5554: give the position of the popup, they have the same meaning as for the
                   5555: .Ic display-menu
                   5556: command.
                   5557: .Fl w
                   5558: and
                   5559: .Fl h
                   5560: give the width and height - both may be a percentage (followed by
                   5561: .Ql % ) .
                   5562: If omitted, without
                   5563: .Fl R
                   5564: they are calculated from the given lines and with
                   5565: .Fl R
                   5566: they use half the terminal size.
                   5567: .Pp
                   5568: The
                   5569: .Fl C
                   5570: flag closes any popup on the client.
1.57      jmc      5571: .El
                   5572: .Sh BUFFERS
                   5573: .Nm
1.392     nicm     5574: maintains a set of named
1.199     nicm     5575: .Em paste buffers .
1.392     nicm     5576: Each buffer may be either explicitly or automatically named.
                   5577: Explicitly named buffers are named when created with the
                   5578: .Ic set-buffer
                   5579: or
                   5580: .Ic load-buffer
                   5581: commands, or by renaming an automatically named buffer with
                   5582: .Ic set-buffer
                   5583: .Fl n .
                   5584: Automatically named buffers are given a name such as
                   5585: .Ql buffer0001 ,
                   5586: .Ql buffer0002
                   5587: and so on.
                   5588: When the
                   5589: .Ic buffer-limit
                   5590: option is reached, the oldest automatically named buffer is deleted.
1.493     nicm     5591: Explicitly named buffers are not subject to
1.57      jmc      5592: .Ic buffer-limit
1.709     nicm     5593: and may be deleted with the
1.392     nicm     5594: .Ic delete-buffer
                   5595: command.
                   5596: .Pp
1.57      jmc      5597: Buffers may be added using
                   5598: .Ic copy-mode
                   5599: or the
                   5600: .Ic set-buffer
1.392     nicm     5601: and
                   5602: .Ic load-buffer
                   5603: commands, and pasted into a window using the
1.57      jmc      5604: .Ic paste-buffer
                   5605: command.
1.392     nicm     5606: If a buffer command is used and no buffer is specified, the most
                   5607: recently added automatically named buffer is assumed.
1.57      jmc      5608: .Pp
                   5609: A configurable history buffer is also maintained for each window.
                   5610: By default, up to 2000 lines are kept; this can be altered with the
                   5611: .Ic history-limit
                   5612: option (see the
                   5613: .Ic set-option
                   5614: command above).
                   5615: .Pp
                   5616: The buffer commands are as follows:
                   5617: .Bl -tag -width Ds
1.178     nicm     5618: .It Xo
                   5619: .Ic choose-buffer
1.682     nicm     5620: .Op Fl NZr
1.572     nicm     5621: .Op Fl F Ar format
1.562     nicm     5622: .Op Fl f Ar filter
1.561     nicm     5623: .Op Fl O Ar sort-order
1.555     nicm     5624: .Op Fl t Ar target-pane
1.178     nicm     5625: .Op Ar template
                   5626: .Xc
1.555     nicm     5627: Put a pane into buffer mode, where a buffer may be chosen interactively from
                   5628: a list.
1.593     nicm     5629: .Fl Z
                   5630: zooms the pane.
1.555     nicm     5631: The following keys may be used in buffer mode:
                   5632: .Bl -column "Key" "Function" -offset indent
                   5633: .It Sy "Key" Ta Sy "Function"
1.582     nicm     5634: .It Li "Enter" Ta "Paste selected buffer"
1.555     nicm     5635: .It Li "Up" Ta "Select previous buffer"
                   5636: .It Li "Down" Ta "Select next buffer"
1.559     nicm     5637: .It Li "C-s" Ta "Search by name or content"
                   5638: .It Li "n" Ta "Repeat last search"
1.555     nicm     5639: .It Li "t" Ta "Toggle if buffer is tagged"
                   5640: .It Li "T" Ta "Tag no buffers"
                   5641: .It Li "C-t" Ta "Tag all buffers"
1.582     nicm     5642: .It Li "p" Ta "Paste selected buffer"
                   5643: .It Li "P" Ta "Paste tagged buffers"
1.555     nicm     5644: .It Li "d" Ta "Delete selected buffer"
                   5645: .It Li "D" Ta "Delete tagged buffers"
1.759     nicm     5646: .It Li "e" Ta "Open the buffer in an editor"
1.562     nicm     5647: .It Li "f" Ta "Enter a format to filter items"
1.682     nicm     5648: .It Li "O" Ta "Change sort field"
                   5649: .It Li "r" Ta "Reverse sort order"
1.576     nicm     5650: .It Li "v" Ta "Toggle preview"
1.555     nicm     5651: .It Li "q" Ta "Exit mode"
                   5652: .El
                   5653: .Pp
                   5654: After a buffer is chosen,
1.178     nicm     5655: .Ql %%
1.392     nicm     5656: is replaced by the buffer name in
1.178     nicm     5657: .Ar template
                   5658: and the result executed as a command.
                   5659: If
                   5660: .Ar template
                   5661: is not given, "paste-buffer -b '%%'" is used.
1.555     nicm     5662: .Pp
1.561     nicm     5663: .Fl O
1.682     nicm     5664: specifies the initial sort field: one of
1.561     nicm     5665: .Ql time ,
                   5666: .Ql name
                   5667: or
                   5668: .Ql size .
1.682     nicm     5669: .Fl r
                   5670: reverses the sort order.
1.562     nicm     5671: .Fl f
1.579     nicm     5672: specifies an initial filter: the filter is a format - if it evaluates to zero,
                   5673: the item in the list is not shown, otherwise it is shown.
                   5674: If a filter would lead to an empty list, it is ignored.
1.572     nicm     5675: .Fl F
                   5676: specifies the format for each item in the list.
1.576     nicm     5677: .Fl N
                   5678: starts without the preview.
1.314     nicm     5679: This command works only if at least one client is attached.
1.57      jmc      5680: .It Ic clear-history Op Fl t Ar target-pane
                   5681: .D1 (alias: Ic clearhist )
                   5682: Remove and free the history for the specified pane.
1.392     nicm     5683: .It Ic delete-buffer Op Fl b Ar buffer-name
1.57      jmc      5684: .D1 (alias: Ic deleteb )
1.392     nicm     5685: Delete the buffer named
                   5686: .Ar buffer-name ,
                   5687: or the most recently added automatically named buffer if not specified.
1.294     nicm     5688: .It Xo Ic list-buffers
                   5689: .Op Fl F Ar format
1.738     nicm     5690: .Op Fl f Ar filter
1.294     nicm     5691: .Xc
1.57      jmc      5692: .D1 (alias: Ic lsb )
1.198     nicm     5693: List the global buffers.
1.294     nicm     5694: .Fl F
1.738     nicm     5695: specifies the format of each line and
                   5696: .Fl f
                   5697: a filter.
                   5698: Only buffers for which the filter is true are shown.
                   5699: See the
1.294     nicm     5700: .Sx FORMATS
                   5701: section.
1.200     jmc      5702: .It Xo Ic load-buffer
1.794     nicm     5703: .Op Fl w
1.392     nicm     5704: .Op Fl b Ar buffer-name
1.794     nicm     5705: .Op Fl t Ar target-client
1.57      jmc      5706: .Ar path
                   5707: .Xc
                   5708: .D1 (alias: Ic loadb )
                   5709: Load the contents of the specified paste buffer from
                   5710: .Ar path .
1.794     nicm     5711: If
                   5712: .Fl w
                   5713: is given, the buffer is also sent to the clipboard for
                   5714: .Ar target-client
                   5715: using the
                   5716: .Xr xterm 1
                   5717: escape sequence, if possible.
1.57      jmc      5718: .It Xo Ic paste-buffer
1.278     nicm     5719: .Op Fl dpr
1.392     nicm     5720: .Op Fl b Ar buffer-name
1.170     nicm     5721: .Op Fl s Ar separator
1.158     nicm     5722: .Op Fl t Ar target-pane
1.57      jmc      5723: .Xc
                   5724: .D1 (alias: Ic pasteb )
1.158     nicm     5725: Insert the contents of a paste buffer into the specified pane.
                   5726: If not specified, paste into the current one.
1.57      jmc      5727: With
                   5728: .Fl d ,
1.392     nicm     5729: also delete the paste buffer.
1.57      jmc      5730: When output, any linefeed (LF) characters in the paste buffer are replaced with
1.170     nicm     5731: a separator, by default carriage return (CR).
                   5732: A custom separator may be specified using the
                   5733: .Fl s
                   5734: flag.
                   5735: The
1.57      jmc      5736: .Fl r
1.170     nicm     5737: flag means to do no replacement (equivalent to a separator of LF).
1.278     nicm     5738: If
                   5739: .Fl p
                   5740: is specified, paste bracket control codes are inserted around the
                   5741: buffer if the application has requested bracketed paste mode.
1.57      jmc      5742: .It Xo Ic save-buffer
                   5743: .Op Fl a
1.392     nicm     5744: .Op Fl b Ar buffer-name
1.57      jmc      5745: .Ar path
                   5746: .Xc
                   5747: .D1 (alias: Ic saveb )
                   5748: Save the contents of the specified paste buffer to
                   5749: .Ar path .
                   5750: The
                   5751: .Fl a
                   5752: option appends to rather than overwriting the file.
                   5753: .It Xo Ic set-buffer
1.794     nicm     5754: .Op Fl aw
1.392     nicm     5755: .Op Fl b Ar buffer-name
1.794     nicm     5756: .Op Fl t Ar target-client
1.392     nicm     5757: .Op Fl n Ar new-buffer-name
1.57      jmc      5758: .Ar data
                   5759: .Xc
                   5760: .D1 (alias: Ic setb )
                   5761: Set the contents of the specified buffer to
                   5762: .Ar data .
1.794     nicm     5763: If
                   5764: .Fl w
                   5765: is given, the buffer is also sent to the clipboard for
                   5766: .Ar target-client
                   5767: using the
                   5768: .Xr xterm 1
                   5769: escape sequence, if possible.
1.383     nicm     5770: The
                   5771: .Fl a
                   5772: option appends to rather than overwriting the buffer.
1.392     nicm     5773: The
                   5774: .Fl n
                   5775: option renames the buffer to
                   5776: .Ar new-buffer-name .
1.1       nicm     5777: .It Xo Ic show-buffer
1.392     nicm     5778: .Op Fl b Ar buffer-name
1.1       nicm     5779: .Xc
                   5780: .D1 (alias: Ic showb )
                   5781: Display the contents of the specified buffer.
1.57      jmc      5782: .El
                   5783: .Sh MISCELLANEOUS
                   5784: Miscellaneous commands are as follows:
                   5785: .Bl -tag -width Ds
1.72      nicm     5786: .It Ic clock-mode Op Fl t Ar target-pane
1.57      jmc      5787: Display a large clock.
1.334     nicm     5788: .It Xo Ic if-shell
1.410     nicm     5789: .Op Fl bF
1.334     nicm     5790: .Op Fl t Ar target-pane
                   5791: .Ar shell-command command
                   5792: .Op Ar command
                   5793: .Xc
1.57      jmc      5794: .D1 (alias: Ic if )
1.251     nicm     5795: Execute the first
1.57      jmc      5796: .Ar command
                   5797: if
                   5798: .Ar shell-command
1.251     nicm     5799: returns success or the second
                   5800: .Ar command
                   5801: otherwise.
1.410     nicm     5802: Before being executed,
                   5803: .Ar shell-command
                   5804: is expanded using the rules specified in the
1.334     nicm     5805: .Sx FORMATS
                   5806: section, including those relevant to
                   5807: .Ar target-pane .
1.335     nicm     5808: With
                   5809: .Fl b ,
                   5810: .Ar shell-command
                   5811: is run in the background.
1.410     nicm     5812: .Pp
                   5813: If
                   5814: .Fl F
                   5815: is given,
                   5816: .Ar shell-command
                   5817: is not executed but considered success if neither empty nor zero (after formats
                   5818: are expanded).
1.57      jmc      5819: .It Ic lock-server
                   5820: .D1 (alias: Ic lock )
1.90      nicm     5821: Lock each client individually by running the command specified by the
                   5822: .Ic lock-command
                   5823: option.
1.308     nicm     5824: .It Xo Ic run-shell
1.357     nicm     5825: .Op Fl b
1.717     nicm     5826: .Op Fl d Ar delay
1.308     nicm     5827: .Op Fl t Ar target-pane
1.718     nicm     5828: .Op Ar shell-command
1.308     nicm     5829: .Xc
1.87      nicm     5830: .D1 (alias: Ic run )
                   5831: Execute
1.153     nicm     5832: .Ar shell-command
1.106     nicm     5833: in the background without creating a window.
1.334     nicm     5834: Before being executed, shell-command is expanded using the rules specified in
                   5835: the
                   5836: .Sx FORMATS
                   5837: section.
1.335     nicm     5838: With
                   5839: .Fl b ,
                   5840: the command is run in the background.
1.717     nicm     5841: .Fl d
                   5842: waits for
                   5843: .Ar delay
                   5844: seconds before starting the command.
                   5845: After the command finishes, any output to stdout is displayed in view mode (in
                   5846: the pane specified by
1.308     nicm     5847: .Fl t
                   5848: or the current pane if omitted).
1.153     nicm     5849: If the command doesn't return success, the exit status is also displayed.
1.342     nicm     5850: .It Xo Ic wait-for
1.370     nicm     5851: .Op Fl L | S | U
1.342     nicm     5852: .Ar channel
                   5853: .Xc
                   5854: .D1 (alias: Ic wait )
1.343     nicm     5855: When used without options, prevents the client from exiting until woken using
1.342     nicm     5856: .Ic wait-for
                   5857: .Fl S
                   5858: with the same channel.
1.343     nicm     5859: When
                   5860: .Fl L
                   5861: is used, the channel is locked and any clients that try to lock the same
                   5862: channel are made to wait until the channel is unlocked with
                   5863: .Ic wait-for
                   5864: .Fl U .
1.703     nicm     5865: .El
                   5866: .Sh EXIT MESSAGES
                   5867: When a
                   5868: .Nm
                   5869: client detaches, it prints a message.
                   5870: This may be one of:
                   5871: .Bl -tag -width Ds
1.780     nicm     5872: .It detached (from session ...)
1.703     nicm     5873: The client was detached normally.
1.780     nicm     5874: .It detached and SIGHUP
1.703     nicm     5875: The client was detached and its parent sent the
                   5876: .Dv SIGHUP
                   5877: signal (for example with
                   5878: .Ic detach-client
                   5879: .Fl P ) .
1.780     nicm     5880: .It lost tty
1.703     nicm     5881: The client's
                   5882: .Xr tty 4
                   5883: or
                   5884: .Xr pty 4
                   5885: was unexpectedly destroyed.
1.780     nicm     5886: .It terminated
1.703     nicm     5887: The client was killed with
                   5888: .Dv SIGTERM .
1.780     nicm     5889: .It too far behind
                   5890: The client is in control mode and became unable to keep up with the data from
                   5891: .Nm .
                   5892: .It exited
1.703     nicm     5893: The server exited when it had no sessions.
1.780     nicm     5894: .It server exited
1.703     nicm     5895: The server exited when it received
                   5896: .Dv SIGTERM .
1.780     nicm     5897: .It server exited unexpectedly
1.703     nicm     5898: The server crashed or otherwise exited without telling the client the reason.
1.228     nicm     5899: .El
                   5900: .Sh TERMINFO EXTENSIONS
                   5901: .Nm
1.478     nicm     5902: understands some unofficial extensions to
1.746     nicm     5903: .Xr terminfo 5 .
1.744     nicm     5904: It is not normally necessary to set these manually, instead the
                   5905: .Ic terminal-features
                   5906: option should be used.
1.228     nicm     5907: .Bl -tag -width Ds
1.756     nicm     5908: .It Em \&AX
                   5909: An existing extension that tells
                   5910: .Nm
                   5911: the terminal supports default colours.
1.739     nicm     5912: .It Em \&Cs , Cr
1.233     nicm     5913: Set the cursor colour.
1.232     jmc      5914: The first takes a single string argument and is used to set the colour;
                   5915: the second takes no arguments and restores the default cursor colour.
                   5916: If set, a sequence such as this may be used
                   5917: to change the cursor colour from inside
                   5918: .Nm :
                   5919: .Bd -literal -offset indent
                   5920: $ printf '\e033]12;red\e033\e\e'
                   5921: .Ed
1.753     nicm     5922: .It Em \&Cmg, \&Clmg, \&Dsmg , \&Enmg
                   5923: Set, clear, disable or enable DECSLRM margins.
1.756     nicm     5924: These are set automatically if the terminal reports it is
                   5925: .Em VT420
                   5926: compatible.
1.755     nicm     5927: .It Em \&Dsbp , \&Enbp
                   5928: Disable and enable bracketed paste.
1.756     nicm     5929: These are set automatically if the
                   5930: .Em XT
                   5931: capability is present.
1.772     nicm     5932: .It Em \&Dseks , \&Eneks
                   5933: Disable and enable extended keys.
1.756     nicm     5934: .It Em \&Dsfcs , \&Enfcs
                   5935: Disable and enable focus reporting.
                   5936: These are set automatically if the
                   5937: .Em XT
                   5938: capability is present.
1.649     nicm     5939: .It Em \&Smol
                   5940: Enable the overline attribute.
1.611     nicm     5941: .It Em \&Smulx
1.672     nicm     5942: Set a styled underscore.
                   5943: The single parameter is one of: 0 for no underscore, 1 for normal
                   5944: underscore, 2 for double underscore, 3 for curly underscore, 4 for dotted
                   5945: underscore and 5 for dashed underscore.
1.797     nicm     5946: .It Em \&Setulc , \&ol
                   5947: Set the underscore colour or reset to the default.
1.672     nicm     5948: The argument is (red * 65536) + (green * 256) + blue where each is between 0
                   5949: and 255.
1.361     jmc      5950: .It Em \&Ss , Se
1.403     nicm     5951: Set or reset the cursor style.
1.232     jmc      5952: If set, a sequence such as this may be used
                   5953: to change the cursor to an underline:
1.230     nicm     5954: .Bd -literal -offset indent
                   5955: $ printf '\e033[4 q'
                   5956: .Ed
                   5957: .Pp
                   5958: If
1.403     nicm     5959: .Em Se
                   5960: is not set, \&Ss with argument 0 will be used to reset the cursor style instead.
1.741     nicm     5961: .It Em \&Sync
1.745     nicm     5962: Start (parameter is 1) or end (parameter is 2) a synchronized update.
1.478     nicm     5963: .It Em \&Tc
                   5964: Indicate that the terminal supports the
                   5965: .Ql direct colour
                   5966: RGB escape sequence (for example, \ee[38;2;255;255;255m).
1.518     nicm     5967: .Pp
1.612     nicm     5968: If supported, this is used for the initialize colour escape sequence (which
1.518     nicm     5969: may be enabled by adding the
                   5970: .Ql initc
                   5971: and
                   5972: .Ql ccc
                   5973: capabilities to the
                   5974: .Nm
                   5975: .Xr terminfo 5
                   5976: entry).
1.739     nicm     5977: .Pp
                   5978: This is equivalent to the
                   5979: .Em RGB
                   5980: .Xr terminfo 5
                   5981: capability.
1.232     jmc      5982: .It Em \&Ms
1.478     nicm     5983: Store the current buffer in the host terminal's selection (clipboard).
1.232     jmc      5984: See the
                   5985: .Em set-clipboard
                   5986: option above and the
                   5987: .Xr xterm 1
                   5988: man page.
1.756     nicm     5989: .It Em \&XT
                   5990: This is an existing extension capability that tmux uses to mean that the
                   5991: terminal supports the
                   5992: .Xr xterm 1
                   5993: title set sequences and to automatically set some of the capabilities above.
1.345     nicm     5994: .El
                   5995: .Sh CONTROL MODE
                   5996: .Nm
                   5997: offers a textual interface called
                   5998: .Em control mode .
                   5999: This allows applications to communicate with
                   6000: .Nm
                   6001: using a simple text-only protocol.
                   6002: .Pp
                   6003: In control mode, a client sends
                   6004: .Nm
                   6005: commands or command sequences terminated by newlines on standard input.
                   6006: Each command will produce one block of output on standard output.
                   6007: An output block consists of a
                   6008: .Em %begin
                   6009: line followed by the output (which may be empty).
                   6010: The output block ends with a
                   6011: .Em %end
                   6012: or
                   6013: .Em %error .
                   6014: .Em %begin
                   6015: and matching
                   6016: .Em %end
                   6017: or
                   6018: .Em %error
                   6019: have two arguments: an integer time (as seconds from epoch) and command number.
                   6020: For example:
                   6021: .Bd -literal -offset indent
                   6022: %begin 1363006971 2
                   6023: 0: ksh* (1 panes) [80x24] [layout b25f,80x24,0,0,2] @2 (active)
                   6024: %end 1363006971 2
                   6025: .Ed
1.535     nicm     6026: .Pp
                   6027: The
                   6028: .Ic refresh-client
                   6029: .Fl C
                   6030: command may be used to set the size of a client in control mode.
1.345     nicm     6031: .Pp
                   6032: In control mode,
                   6033: .Nm
                   6034: outputs notifications.
                   6035: A notification will never occur inside an output block.
                   6036: .Pp
                   6037: The following notifications are defined:
                   6038: .Bl -tag -width Ds
1.750     jmc      6039: .It Ic %client-session-changed Ar client session-id name
1.547     nicm     6040: The client is now attached to the session with ID
                   6041: .Ar session-id ,
                   6042: which is named
                   6043: .Ar name .
1.778     nicm     6044: .It Ic %continue Ar pane-id
                   6045: The pane has been continued after being paused (if the
                   6046: .Ar pause-after
                   6047: flag is set, see
                   6048: .Ic refresh-client
                   6049: .Fl A ) .
1.345     nicm     6050: .It Ic %exit Op Ar reason
                   6051: The
                   6052: .Nm
                   6053: client is exiting immediately, either because it is not attached to any session
                   6054: or an error occurred.
                   6055: If present,
                   6056: .Ar reason
                   6057: describes why the client exited.
1.788     nicm     6058: .It Ic %extended-output Ar pane-id Ar age Ar ... \&  : Ar value
1.779     nicm     6059: New form of
                   6060: .Ic %output
                   6061: sent when the
                   6062: .Ar pause-after
                   6063: flag is set.
                   6064: .Ar age
                   6065: is the time in milliseconds for which tmux had buffered the output before it was sent.
                   6066: Any subsequent arguments up until a single
                   6067: .Ql \&:
                   6068: are for future use and should be ignored.
1.460     nicm     6069: .It Ic %layout-change Ar window-id Ar window-layout Ar window-visible-layout Ar window-flags
1.345     nicm     6070: The layout of a window with ID
                   6071: .Ar window-id
                   6072: changed.
                   6073: The new layout is
                   6074: .Ar window-layout .
1.460     nicm     6075: The window's visible layout is
                   6076: .Ar window-visible-layout
                   6077: and the window flags are
                   6078: .Ar window-flags .
1.347     nicm     6079: .It Ic %output Ar pane-id Ar value
                   6080: A window pane produced output.
1.345     nicm     6081: .Ar value
1.350     nicm     6082: escapes non-printable characters and backslash as octal \\xxx.
1.547     nicm     6083: .It Ic %pane-mode-changed Ar pane-id
                   6084: The pane with ID
                   6085: .Ar pane-id
                   6086: has changed mode.
1.778     nicm     6087: .It Ic %pause Ar pane-id
                   6088: The pane has been paused (if the
                   6089: .Ar pause-after
                   6090: flag is set).
1.345     nicm     6091: .It Ic %session-changed Ar session-id Ar name
                   6092: The client is now attached to the session with ID
                   6093: .Ar session-id ,
                   6094: which is named
                   6095: .Ar name .
                   6096: .It Ic %session-renamed Ar name
                   6097: The current session was renamed to
                   6098: .Ar name .
1.547     nicm     6099: .It Ic %session-window-changed Ar session-id Ar window-id
                   6100: The session with ID
                   6101: .Ar session-id
                   6102: changed its active window to the window with ID
                   6103: .Ar window-id .
1.345     nicm     6104: .It Ic %sessions-changed
                   6105: A session was created or destroyed.
1.788     nicm     6106: .It Xo Ic %subscription-changed
                   6107: .Ar name
                   6108: .Ar session-id
                   6109: .Ar window-id
                   6110: .Ar window-index
                   6111: .Ar pane-id ... \&  :
                   6112: .Ar value
                   6113: .Xc
                   6114: The value of the format associated with subscription
                   6115: .Ar name
                   6116: has changed to
                   6117: .Ar value .
                   6118: See
                   6119: .Ic refresh-client
                   6120: .Fl B .
                   6121: Any arguments after
                   6122: .Ar pane-id
                   6123: up until a single
                   6124: .Ql \&:
                   6125: are for future use and should be ignored.
1.345     nicm     6126: .It Ic %unlinked-window-add Ar window-id
                   6127: The window with ID
                   6128: .Ar window-id
                   6129: was created but is not linked to the current session.
                   6130: .It Ic %window-add Ar window-id
                   6131: The window with ID
                   6132: .Ar window-id
                   6133: was linked to the current session.
                   6134: .It Ic %window-close Ar window-id
                   6135: The window with ID
                   6136: .Ar window-id
                   6137: closed.
1.547     nicm     6138: .It Ic %window-pane-changed Ar window-id Ar pane-id
                   6139: The active pane in the window with ID
                   6140: .Ar window-id
                   6141: changed to the pane with ID
                   6142: .Ar pane-id .
1.345     nicm     6143: .It Ic %window-renamed Ar window-id Ar name
                   6144: The window with ID
                   6145: .Ar window-id
                   6146: was renamed to
                   6147: .Ar name .
1.644     schwarze 6148: .El
                   6149: .Sh ENVIRONMENT
                   6150: When
                   6151: .Nm
                   6152: is started, it inspects the following environment variables:
                   6153: .Bl -tag -width LC_CTYPE
                   6154: .It Ev EDITOR
                   6155: If the command specified in this variable contains the string
                   6156: .Ql vi
                   6157: and
                   6158: .Ev VISUAL
                   6159: is unset, use vi-style key bindings.
                   6160: Overridden by the
                   6161: .Ic mode-keys
                   6162: and
                   6163: .Ic status-keys
                   6164: options.
                   6165: .It Ev HOME
                   6166: The user's login directory.
                   6167: If unset, the
                   6168: .Xr passwd 5
                   6169: database is consulted.
                   6170: .It Ev LC_CTYPE
                   6171: The character encoding
                   6172: .Xr locale 1 .
                   6173: It is used for two separate purposes.
                   6174: For output to the terminal, UTF-8 is used if the
                   6175: .Fl u
                   6176: option is given or if
                   6177: .Ev LC_CTYPE
                   6178: contains
                   6179: .Qq UTF-8
                   6180: or
                   6181: .Qq UTF8 .
                   6182: Otherwise, only ASCII characters are written and non-ASCII characters
                   6183: are replaced with underscores
                   6184: .Pq Ql _ .
                   6185: For input,
                   6186: .Nm
                   6187: always runs with a UTF-8 locale.
                   6188: If en_US.UTF-8 is provided by the operating system it is used and
                   6189: .Ev LC_CTYPE
                   6190: is ignored for input.
                   6191: Otherwise,
                   6192: .Ev LC_CTYPE
                   6193: tells
                   6194: .Nm
                   6195: what the UTF-8 locale is called on the current system.
                   6196: If the locale specified by
                   6197: .Ev LC_CTYPE
                   6198: is not available or is not a UTF-8 locale,
                   6199: .Nm
                   6200: exits with an error message.
                   6201: .It Ev LC_TIME
                   6202: The date and time format
                   6203: .Xr locale 1 .
                   6204: It is used for locale-dependent
                   6205: .Xr strftime 3
                   6206: format specifiers.
                   6207: .It Ev PWD
                   6208: The current working directory to be set in the global environment.
                   6209: This may be useful if it contains symbolic links.
                   6210: If the value of the variable does not match the current working
                   6211: directory, the variable is ignored and the result of
                   6212: .Xr getcwd 3
                   6213: is used instead.
                   6214: .It Ev SHELL
                   6215: The absolute path to the default shell for new windows.
                   6216: See the
                   6217: .Ic default-shell
                   6218: option for details.
                   6219: .It Ev TMUX_TMPDIR
                   6220: The parent directory of the directory containing the server sockets.
                   6221: See the
                   6222: .Fl L
                   6223: option for details.
                   6224: .It Ev VISUAL
                   6225: If the command specified in this variable contains the string
                   6226: .Ql vi ,
                   6227: use vi-style key bindings.
                   6228: Overridden by the
                   6229: .Ic mode-keys
                   6230: and
                   6231: .Ic status-keys
                   6232: options.
1.1       nicm     6233: .El
                   6234: .Sh FILES
1.26      nicm     6235: .Bl -tag -width "/etc/tmux.confXXX" -compact
1.1       nicm     6236: .It Pa ~/.tmux.conf
1.6       jmc      6237: Default
1.1       nicm     6238: .Nm
1.6       jmc      6239: configuration file.
1.26      nicm     6240: .It Pa /etc/tmux.conf
                   6241: System-wide configuration file.
1.1       nicm     6242: .El
1.57      jmc      6243: .Sh EXAMPLES
                   6244: To create a new
                   6245: .Nm
                   6246: session running
                   6247: .Xr vi 1 :
                   6248: .Pp
                   6249: .Dl $ tmux new-session vi
                   6250: .Pp
                   6251: Most commands have a shorter form, known as an alias.
                   6252: For new-session, this is
                   6253: .Ic new :
                   6254: .Pp
                   6255: .Dl $ tmux new vi
                   6256: .Pp
                   6257: Alternatively, the shortest unambiguous form of a command is accepted.
                   6258: If there are several options, they are listed:
                   6259: .Bd -literal -offset indent
                   6260: $ tmux n
                   6261: ambiguous command: n, could be: new-session, new-window, next-window
                   6262: .Ed
                   6263: .Pp
                   6264: Within an active session, a new window may be created by typing
                   6265: .Ql C-b c
                   6266: (Ctrl
                   6267: followed by the
                   6268: .Ql b
                   6269: key
                   6270: followed by the
                   6271: .Ql c
                   6272: key).
                   6273: .Pp
                   6274: Windows may be navigated with:
                   6275: .Ql C-b 0
                   6276: (to select window 0),
                   6277: .Ql C-b 1
                   6278: (to select window 1), and so on;
                   6279: .Ql C-b n
                   6280: to select the next window; and
                   6281: .Ql C-b p
                   6282: to select the previous window.
                   6283: .Pp
                   6284: A session may be detached using
                   6285: .Ql C-b d
1.64      nicm     6286: (or by an external event such as
                   6287: .Xr ssh 1
                   6288: disconnection) and reattached with:
1.57      jmc      6289: .Pp
                   6290: .Dl $ tmux attach-session
                   6291: .Pp
                   6292: Typing
                   6293: .Ql C-b \&?
                   6294: lists the current key bindings in the current window; up and down may be used
                   6295: to navigate the list or
                   6296: .Ql q
                   6297: to exit from it.
                   6298: .Pp
                   6299: Commands to be run when the
                   6300: .Nm
                   6301: server is started may be placed in the
                   6302: .Pa ~/.tmux.conf
                   6303: configuration file.
                   6304: Common examples include:
                   6305: .Pp
                   6306: Changing the default prefix key:
                   6307: .Bd -literal -offset indent
                   6308: set-option -g prefix C-a
                   6309: unbind-key C-b
                   6310: bind-key C-a send-prefix
                   6311: .Ed
                   6312: .Pp
                   6313: Turning the status line off, or changing its colour:
                   6314: .Bd -literal -offset indent
                   6315: set-option -g status off
1.378     nicm     6316: set-option -g status-style bg=blue
1.57      jmc      6317: .Ed
                   6318: .Pp
                   6319: Setting other options, such as the default command,
                   6320: or locking after 30 minutes of inactivity:
                   6321: .Bd -literal -offset indent
                   6322: set-option -g default-command "exec /bin/ksh"
                   6323: set-option -g lock-after-time 1800
                   6324: .Ed
                   6325: .Pp
                   6326: Creating new key bindings:
                   6327: .Bd -literal -offset indent
                   6328: bind-key b set-option status
                   6329: bind-key / command-prompt "split-window 'exec man %%'"
1.73      nicm     6330: bind-key S command-prompt "new-window -n %1 'ssh %1'"
1.57      jmc      6331: .Ed
1.1       nicm     6332: .Sh SEE ALSO
                   6333: .Xr pty 4
                   6334: .Sh AUTHORS
1.477     nicm     6335: .An Nicholas Marriott Aq Mt nicholas.marriott@gmail.com