Extend display-message to work for control clients. GitHub issue 3449.
[tmux.git] / tmux.1
blob20dce121b750213b706eda2db6b7aeb275a4eed4
1 .\" $OpenBSD$
2 .\"
3 .\" Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
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 .\"
17 .Dd $Mdocdate$
18 .Dt TMUX 1
19 .Os
20 .Sh NAME
21 .Nm tmux
22 .Nd terminal multiplexer
23 .Sh SYNOPSIS
24 .Nm tmux
25 .Bk -words
26 .Op Fl 2CDlNuVv
27 .Op Fl c Ar shell-command
28 .Op Fl f Ar file
29 .Op Fl L Ar socket-name
30 .Op Fl S Ar socket-path
31 .Op Fl T Ar features
32 .Op Ar command Op Ar flags
33 .Ek
34 .Sh DESCRIPTION
35 .Nm
36 is a terminal multiplexer:
37 it enables a number of terminals to be created, accessed, and
38 controlled from a single screen.
39 .Nm
40 may be detached from a screen
41 and continue running in the background,
42 then later reattached.
43 .Pp
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
75 Each session is persistent and will survive accidental disconnection
76 (such as
77 .Xr ssh 1
78 connection timeout) or intentional detaching (with the
79 .Ql C-b d
80 key strokes).
81 .Nm
82 may be reattached using:
83 .Pp
84 .Dl $ tmux attach
85 .Pp
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 .
95 .Pp
96 The options are as follows:
97 .Bl -tag -width "XXXXXXXXXXXX"
98 .It Fl 2
99 Force
101 to assume the terminal supports 256 colours.
102 This is equivalent to
103 .Fl T Ar 256 .
104 .It Fl C
105 Start in control mode (see the
106 .Sx CONTROL MODE
107 section).
108 Given twice
109 .Xo ( Fl CC ) Xc
110 disables echo.
111 .It Fl c Ar shell-command
112 Execute
113 .Ar shell-command
114 using the default shell.
115 If necessary, the
117 server will be started to retrieve the
118 .Ic default-shell
119 option.
120 This option is for compatibility with
121 .Xr sh 1
122 when
124 is used as a login shell.
125 .It Fl D
126 Do not start the
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.
136 .It Fl f Ar file
137 Specify an alternative configuration file.
138 By default,
140 loads the system configuration file from
141 .Pa /etc/tmux.conf ,
142 if present, then looks for a user configuration file at
143 .Pa ~/.tmux.conf .
145 The configuration file is a set of
147 commands which are executed in sequence when the server is first started.
149 loads configuration files once when the server process has started.
151 .Ic source-file
152 command may be used to load a file later.
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.
157 .It Fl L Ar socket-name
159 stores the server socket in a directory under
160 .Ev TMUX_TMPDIR
162 .Pa /tmp
163 if it is unset.
164 The default socket is named
165 .Em default .
166 This option allows a different socket name to be specified, allowing several
167 independent
169 servers to be run.
170 Unlike
171 .Fl S
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 .
179 .Pa tmux-UID
180 directory is created by
182 and must not be world readable, writable or executable.
184 If the socket is accidentally removed, the
185 .Dv SIGUSR1
186 signal may be sent to the
188 server process to recreate it (note that this will fail if any parent
189 directories are missing).
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.
194 .It Fl N
195 Do not start the server even if the command would normally do so (for example
196 .Ic new-session
198 .Ic start-server ) .
199 .It Fl S Ar socket-path
200 Specify a full alternative path to the server socket.
202 .Fl S
203 is specified, the default socket directory is not used and any
204 .Fl L
205 flag is ignored.
206 .It Fl T Ar features
207 Set terminal features for the client.
208 This is a comma-separated list of features.
209 See the
210 .Ic terminal-features
211 option.
212 .It Fl u
213 Write UTF-8 output to the terminal even if the first environment
214 variable of
215 .Ev LC_ALL ,
216 .Ev LC_CTYPE ,
218 .Ev LANG
219 that is set does not contain
220 .Qq UTF-8
222 .Qq UTF8 .
223 .It Fl V
224 Report the
226 version.
227 .It Fl v
228 Request verbose logging.
229 Log messages will be saved into
230 .Pa tmux-client-PID.log
232 .Pa tmux-server-PID.log
233 files in the current directory, where
234 .Em PID
235 is the PID of the server or client process.
237 .Fl v
238 is specified twice, an additional
239 .Pa tmux-out-PID.log
240 file is generated with a copy of everything
242 writes to the terminal.
245 .Dv SIGUSR2
246 signal may be sent to the
248 server process to toggle logging between on (as if
249 .Fl v
250 was given) and off.
251 .It Ar command Op Ar flags
252 This specifies one of a set of commands used to control
253 .Nm ,
254 as described in the following sections.
255 If no commands are specified, the
256 .Ic new-session
257 command is assumed.
259 .Sh DEFAULT KEY BINDINGS
261 may be controlled from an attached client by using a key combination of a
262 prefix key,
263 .Ql C-b
264 (Ctrl-b) by default, followed by a command key.
266 The default command key bindings are:
268 .Bl -tag -width "XXXXXXXXXX" -offset indent -compact
269 .It C-b
270 Send the prefix key (C-b) through to the application.
271 .It C-o
272 Rotate the panes in the current window forwards.
273 .It C-z
274 Suspend the
276 client.
277 .It !
278 Break the current pane out of the window.
279 .It \&"
280 .\" "
281 Split the current pane into two, top and bottom.
282 .It #
283 List all paste buffers.
284 .It $
285 Rename the current session.
286 .It %
287 Split the current pane into two, left and right.
288 .It &
289 Kill the current window.
290 .It '
291 Prompt for a window index to select.
292 .It \&(
293 Switch the attached client to the previous session.
294 .It \&)
295 Switch the attached client to the next session.
296 .It ,
297 Rename the current window.
298 .It -
299 Delete the most recently copied buffer of text.
300 .It .
301 Prompt for an index to move the current window.
302 .It 0 to 9
303 Select windows 0 to 9.
304 .It :
305 Enter the
307 command prompt.
308 .It ;
309 Move to the previously active pane.
310 .It =
311 Choose which buffer to paste interactively from a list.
312 .It \&?
313 List all key bindings.
314 .It D
315 Choose a client to detach.
316 .It L
317 Switch the attached client back to the last session.
318 .It \&[
319 Enter copy mode to copy text or view the history.
320 .It \&]
321 Paste the most recently copied buffer of text.
322 .It c
323 Create a new window.
324 .It d
325 Detach the current client.
326 .It f
327 Prompt to search for text in open windows.
328 .It i
329 Display some information about the current window.
330 .It l
331 Move to the previously selected window.
332 .It m
333 Mark the current pane (see
334 .Ic select-pane
335 .Fl m ) .
336 .It M
337 Clear the marked pane.
338 .It n
339 Change to the next window.
340 .It o
341 Select the next pane in the current window.
342 .It p
343 Change to the previous window.
344 .It q
345 Briefly display pane indexes.
346 .It r
347 Force redraw of the attached client.
348 .It s
349 Select a new session for the attached client interactively.
350 .It t
351 Show the time.
352 .It w
353 Choose the current window interactively.
354 .It x
355 Kill the current pane.
356 .It z
357 Toggle zoom state of the current pane.
358 .It {
359 Swap the current pane with the previous pane.
360 .It }
361 Swap the current pane with the next pane.
362 .It ~
363 Show previous messages from
364 .Nm ,
365 if any.
366 .It Page Up
367 Enter copy mode and scroll one page up.
368 .It Up, Down
369 .It Left, Right
370 Change to the pane above, below, to the left, or to the right of the current
371 pane.
372 .It M-1 to M-5
373 Arrange panes in one of the five preset layouts: even-horizontal,
374 even-vertical, main-horizontal, main-vertical, or tiled.
375 .It Space
376 Arrange the current window in the next preset layout.
377 .It M-n
378 Move to the next window with a bell or activity marker.
379 .It M-o
380 Rotate the panes in the current window backwards.
381 .It M-p
382 Move to the previous window with a bell or activity marker.
383 .It C-Up, C-Down
384 .It C-Left, C-Right
385 Resize the current pane in steps of one cell.
386 .It M-Up, M-Down
387 .It M-Left, M-Right
388 Resize the current pane in steps of five cells.
391 Key bindings may be changed with the
392 .Ic bind-key
394 .Ic unbind-key
395 commands.
396 .Sh COMMAND PARSING AND EXECUTION
398 supports a large number of commands which can be used to control its
399 behaviour.
400 Each command is named and can accept zero or more flags and arguments.
401 They may be bound to a key with the
402 .Ic bind-key
403 command or run from the shell prompt, a shell script, a configuration file or
404 the command prompt.
405 For example, the same
406 .Ic set-option
407 command run from the shell prompt, from
408 .Pa ~/.tmux.conf
409 and bound to a key may look like:
410 .Bd -literal -offset indent
411 $ tmux set-option -g status-style bg=cyan
413 set-option -g status-style bg=cyan
415 bind-key C set-option -g status-style bg=cyan
418 Here, the command name is
419 .Ql set-option ,
420 .Ql Fl g
421 is a flag and
422 .Ql status-style
424 .Ql bg=cyan
425 are arguments.
428 distinguishes between command parsing and execution.
429 In order to execute a command,
431 needs it to be split up into its name and arguments.
432 This is command parsing.
433 If a command is run from the shell, the shell parses it; from inside
435 or from a configuration file,
437 does.
438 Examples of when
440 parses commands are:
441 .Bl -dash -offset indent
443 in a configuration file;
445 typed at the command prompt (see
446 .Ic command-prompt ) ;
448 given to
449 .Ic bind-key ;
451 passed as arguments to
452 .Ic if-shell
454 .Ic confirm-before .
457 To execute commands, each client has a
458 .Ql command queue .
459 A global command queue not attached to any client is used on startup
460 for configuration files like
461 .Pa ~/.tmux.conf .
462 Parsed commands added to the queue are executed in order.
463 Some commands, like
464 .Ic if-shell
466 .Ic confirm-before ,
467 parse their argument to create a new command which is inserted immediately
468 after themselves.
469 This means that arguments can be parsed twice or more - once when the parent command (such as
470 .Ic if-shell )
471 is parsed and again when it parses and executes its command.
472 Commands like
473 .Ic if-shell ,
474 .Ic run-shell
476 .Ic display-panes
477 stop execution of subsequent commands on the queue until something happens -
478 .Ic if-shell
480 .Ic run-shell
481 until a shell command finishes and
482 .Ic display-panes
483 until a key is pressed.
484 For example, the following commands:
485 .Bd -literal -offset indent
486 new-session; new-window
487 if-shell "true" "split-window"
488 kill-session
491 Will execute
492 .Ic new-session ,
493 .Ic new-window ,
494 .Ic if-shell ,
495 the shell command
496 .Xr true 1 ,
497 .Ic split-window
499 .Ic kill-session
500 in that order.
503 .Sx COMMANDS
504 section lists the
506 commands and their arguments.
507 .Sh PARSING SYNTAX
508 This section describes the syntax of commands parsed by
509 .Nm ,
510 for example in a configuration file or at the command prompt.
511 Note that when commands are entered into the shell, they are parsed by the shell
512 - see for example
513 .Xr ksh 1
515 .Xr csh 1 .
517 Each command is terminated by a newline or a semicolon (;).
518 Commands separated by semicolons together form a
519 .Ql command sequence
520 - if a command in the sequence encounters an error, no subsequent commands are
521 executed.
523 It is recommended that a semicolon used as a command separator should be
524 written as an individual token, for example from
525 .Xr sh 1 :
526 .Bd -literal -offset indent
527 $ tmux neww \\; splitw
531 .Bd -literal -offset indent
532 $ tmux neww ';' splitw
535 Or from the tmux command prompt:
536 .Bd -literal -offset indent
537 neww ; splitw
540 However, a trailing semicolon is also interpreted as a command separator,
541 for example in these
542 .Xr sh 1
543 commands:
544 .Bd -literal -offset indent
545 $ tmux neww\e; splitw
549 .Bd -literal -offset indent
550 $ tmux 'neww;' splitw
553 As in these examples, when running tmux from the shell extra care must be taken
554 to properly quote semicolons:
555 .Bl -enum -offset Ds
557 Semicolons that should be interpreted as a command separator
558 should be escaped according to the shell conventions.
560 .Xr sh 1
561 this typically means quoted (such as
562 .Ql neww ';' splitw )
563 or escaped (such as
564 .Ql neww \e\e\e\e; splitw ) .
566 Individual semicolons or trailing semicolons that should be interpreted as
567 arguments should be escaped twice: once according to the shell conventions and
568 a second time for
569 .Nm ;
570 for example:
571 .Bd -literal -offset indent
572 $ tmux neww 'foo\e\e;' bar
573 $ tmux neww foo\e\e\e\e; bar
576 Semicolons that are not individual tokens or trailing another token should only
577 be escaped once according to shell conventions; for example:
578 .Bd -literal -offset indent
579 $ tmux neww 'foo-;-bar'
580 $ tmux neww foo-\e\e;-bar
584 Comments are marked by the unquoted # character - any remaining text after a
585 comment is ignored until the end of the line.
587 If the last character of a line is \e, the line is joined with the following
588 line (the \e and the newline are completely removed).
589 This is called line continuation and applies both inside and outside quoted
590 strings and in comments, but not inside braces.
592 Command arguments may be specified as strings surrounded by single (') quotes,
593 double quotes (") or braces ({}).
594 .\" "
595 This is required when the argument contains any special character.
596 Single and double quoted strings cannot span multiple lines except with line
597 continuation.
598 Braces can span multiple lines.
600 Outside of quotes and inside double quotes, these replacements are performed:
601 .Bl -dash -offset indent
603 Environment variables preceded by $ are replaced with their value from the
604 global environment (see the
605 .Sx GLOBAL AND SESSION ENVIRONMENT
606 section).
608 A leading ~ or ~user is expanded to the home directory of the current or
609 specified user.
611 \euXXXX or \euXXXXXXXX is replaced by the Unicode codepoint corresponding to
612 the given four or eight digit hexadecimal number.
614 When preceded (escaped) by a \e, the following characters are replaced: \ee by
615 the escape character; \er by a carriage return; \en by a newline; and \et by a
616 tab.
618 \eooo is replaced by a character of the octal value ooo.
619 Three octal digits are required, for example \e001.
620 The largest valid character is \e377.
622 Any other characters preceded by \e are replaced by themselves (that is, the \e
623 is removed) and are not treated as having any special meaning - so for example
624 \e; will not mark a command sequence and \e$ will not expand an environment
625 variable.
628 Braces are parsed as a configuration file (so conditions such as
629 .Ql %if
630 are processed) and then converted into a string.
631 They are designed to avoid the need for additional escaping when passing a
632 group of
634 commands as an argument (for example to
635 .Ic if-shell ) .
636 These two examples produce an identical command - note that no escaping is
637 needed when using {}:
638 .Bd -literal -offset indent
639 if-shell true {
640     display -p 'brace-dollar-foo: }$foo'
643 if-shell true "display -p 'brace-dollar-foo: }\e$foo'"
646 Braces may be enclosed inside braces, for example:
647 .Bd -literal -offset indent
648 bind x if-shell "true" {
649     if-shell "true" {
650         display "true!"
651     }
655 Environment variables may be set by using the syntax
656 .Ql name=value ,
657 for example
658 .Ql HOME=/home/user .
659 Variables set during parsing are added to the global environment.
660 A hidden variable may be set with
661 .Ql %hidden ,
662 for example:
663 .Bd -literal -offset indent
664 %hidden MYVAR=42
667 Hidden variables are not passed to the environment of processes created
668 by tmux.
669 See the
670 .Sx GLOBAL AND SESSION ENVIRONMENT
671 section.
673 Commands may be parsed conditionally by surrounding them with
674 .Ql %if ,
675 .Ql %elif ,
676 .Ql %else
678 .Ql %endif .
679 The argument to
680 .Ql %if
682 .Ql %elif
683 is expanded as a format (see
684 .Sx FORMATS )
685 and if it evaluates to false (zero or empty), subsequent text is ignored until
686 the closing
687 .Ql %elif ,
688 .Ql %else
690 .Ql %endif .
691 For example:
692 .Bd -literal -offset indent
693 %if "#{==:#{host},myhost}"
694 set -g status-style bg=red
695 %elif "#{==:#{host},myotherhost}"
696 set -g status-style bg=green
697 %else
698 set -g status-style bg=blue
699 %endif
702 Will change the status line to red if running on
703 .Ql myhost ,
704 green if running on
705 .Ql myotherhost ,
706 or blue if running on another host.
707 Conditionals may be given on one line, for example:
708 .Bd -literal -offset indent
709 %if #{==:#{host},myhost} set -g status-style bg=red %endif
711 .Sh COMMANDS
712 This section describes the commands supported by
713 .Nm .
714 Most commands accept the optional
715 .Fl t
716 (and sometimes
717 .Fl s )
718 argument with one of
719 .Ar target-client ,
720 .Ar target-session ,
721 .Ar target-window ,
723 .Ar target-pane .
724 These specify the client, session, window or pane which a command should affect.
726 .Ar target-client
727 should be the name of the client,
728 typically the
729 .Xr pty 4
730 file to which the client is connected, for example either of
731 .Pa /dev/ttyp1
733 .Pa ttyp1
734 for the client attached to
735 .Pa /dev/ttyp1 .
736 If no client is specified,
738 attempts to work out the client currently in use; if that fails, an error is
739 reported.
740 Clients may be listed with the
741 .Ic list-clients
742 command.
744 .Ar target-session
745 is tried as, in order:
746 .Bl -enum -offset Ds
748 A session ID prefixed with a $.
750 An exact name of a session (as listed by the
751 .Ic list-sessions
752 command).
754 The start of a session name, for example
755 .Ql mysess
756 would match a session named
757 .Ql mysession .
760 .Xr fnmatch 3
761 pattern which is matched against the session name.
764 If the session name is prefixed with an
765 .Ql = ,
766 only an exact match is accepted (so
767 .Ql =mysess
768 will only match exactly
769 .Ql mysess ,
771 .Ql mysession ) .
773 If a single session is found, it is used as the target session; multiple matches
774 produce an error.
775 If a session is omitted, the current session is used if available; if no
776 current session is available, the most recently used is chosen.
778 .Ar target-window
780 .Ar src-window
782 .Ar dst-window )
783 specifies a window in the form
784 .Em session Ns \&: Ns Em window .
785 .Em session
786 follows the same rules as for
787 .Ar target-session ,
789 .Em window
790 is looked for in order as:
791 .Bl -enum -offset Ds
793 A special token, listed below.
795 A window index, for example
796 .Ql mysession:1
797 is window 1 in session
798 .Ql mysession .
800 A window ID, such as @1.
802 An exact window name, such as
803 .Ql mysession:mywindow .
805 The start of a window name, such as
806 .Ql mysession:mywin .
808 As an
809 .Xr fnmatch 3
810 pattern matched against the window name.
813 Like sessions, a
814 .Ql =
815 prefix will do an exact match only.
816 An empty window name specifies the next unused index if appropriate (for
817 example the
818 .Ic new-window
820 .Ic link-window
821 commands)
822 otherwise the current window in
823 .Em session
824 is chosen.
826 The following special tokens are available to indicate particular windows.
827 Each has a single-character alternative form.
828 .Bl -column "XXXXXXXXXX" "X"
829 .It Sy "Token" Ta Sy "" Ta Sy "Meaning"
830 .It Li "{start}" Ta "^" Ta "The lowest-numbered window"
831 .It Li "{end}" Ta "$" Ta "The highest-numbered window"
832 .It Li "{last}" Ta "!" Ta "The last (previously current) window"
833 .It Li "{next}" Ta "+" Ta "The next window by number"
834 .It Li "{previous}" Ta "-" Ta "The previous window by number"
837 .Ar target-pane
839 .Ar src-pane
841 .Ar dst-pane )
842 may be a pane ID or takes a similar form to
843 .Ar target-window
844 but with the optional addition of a period followed by a pane index or pane ID,
845 for example:
846 .Ql mysession:mywindow.1 .
847 If the pane index is omitted, the currently active pane in the specified
848 window is used.
849 The following special tokens are available for the pane index:
850 .Bl -column "XXXXXXXXXXXXXX" "X"
851 .It Sy "Token" Ta Sy "" Ta Sy "Meaning"
852 .It Li "{last}" Ta "!" Ta "The last (previously active) pane"
853 .It Li "{next}" Ta "+" Ta "The next pane by number"
854 .It Li "{previous}" Ta "-" Ta "The previous pane by number"
855 .It Li "{top}" Ta "" Ta "The top pane"
856 .It Li "{bottom}" Ta "" Ta "The bottom pane"
857 .It Li "{left}" Ta "" Ta "The leftmost pane"
858 .It Li "{right}" Ta "" Ta "The rightmost pane"
859 .It Li "{top-left}" Ta "" Ta "The top-left pane"
860 .It Li "{top-right}" Ta "" Ta "The top-right pane"
861 .It Li "{bottom-left}" Ta "" Ta "The bottom-left pane"
862 .It Li "{bottom-right}" Ta "" Ta "The bottom-right pane"
863 .It Li "{up-of}" Ta "" Ta "The pane above the active pane"
864 .It Li "{down-of}" Ta "" Ta "The pane below the active pane"
865 .It Li "{left-of}" Ta "" Ta "The pane to the left of the active pane"
866 .It Li "{right-of}" Ta "" Ta "The pane to the right of the active pane"
869 The tokens
870 .Ql +
872 .Ql -
873 may be followed by an offset, for example:
874 .Bd -literal -offset indent
875 select-window -t:+2
878 In addition,
879 .Em target-session ,
880 .Em target-window
882 .Em target-pane
883 may consist entirely of the token
884 .Ql {mouse}
885 (alternative form
886 .Ql = )
887 to specify the session, window or pane where the most recent mouse event occurred
888 (see the
889 .Sx MOUSE SUPPORT
890 section)
892 .Ql {marked}
893 (alternative form
894 .Ql ~ )
895 to specify the marked pane (see
896 .Ic select-pane
897 .Fl m ) .
899 Sessions, window and panes are each numbered with a unique ID; session IDs are
900 prefixed with a
901 .Ql $ ,
902 windows with a
903 .Ql @ ,
904 and panes with a
905 .Ql % .
906 These are unique and are unchanged for the life of the session, window or pane
907 in the
909 server.
910 The pane ID is passed to the child process of the pane in the
911 .Ev TMUX_PANE
912 environment variable.
913 IDs may be displayed using the
914 .Ql session_id ,
915 .Ql window_id ,
917 .Ql pane_id
918 formats (see the
919 .Sx FORMATS
920 section) and the
921 .Ic display-message ,
922 .Ic list-sessions ,
923 .Ic list-windows
925 .Ic list-panes
926 commands.
928 .Ar shell-command
929 arguments are
930 .Xr sh 1
931 commands.
932 This may be a single argument passed to the shell, for example:
933 .Bd -literal -offset indent
934 new-window 'vi ~/.tmux.conf'
937 Will run:
938 .Bd -literal -offset indent
939 /bin/sh -c 'vi ~/.tmux.conf'
942 Additionally, the
943 .Ic new-window ,
944 .Ic new-session ,
945 .Ic split-window ,
946 .Ic respawn-window
948 .Ic respawn-pane
949 commands allow
950 .Ar shell-command
951 to be given as multiple arguments and executed directly (without
952 .Ql sh -c ) .
953 This can avoid issues with shell quoting.
954 For example:
955 .Bd -literal -offset indent
956 $ tmux new-window vi ~/.tmux.conf
959 Will run
960 .Xr vi 1
961 directly without invoking the shell.
963 .Ar command
964 .Op Ar argument ...
965 refers to a
967 command, either passed with the command and arguments separately, for example:
968 .Bd -literal -offset indent
969 bind-key F1 set-option status off
972 Or passed as a single string argument in
973 .Pa .tmux.conf ,
974 for example:
975 .Bd -literal -offset indent
976 bind-key F1 { set-option status off }
979 Example
981 commands include:
982 .Bd -literal -offset indent
983 refresh-client -t/dev/ttyp2
985 rename-session -tfirst newname
987 set-option -wt:0 monitor-activity on
989 new-window ; split-window -d
991 bind-key R source-file ~/.tmux.conf \e; \e
992         display-message "source-file done"
995 Or from
996 .Xr sh 1 :
997 .Bd -literal -offset indent
998 $ tmux kill-window -t :1
1000 $ tmux new-window \e; split-window -d
1002 $ tmux new-session -d 'vi ~/.tmux.conf' \e; split-window -d \e; attach
1004 .Sh CLIENTS AND SESSIONS
1007 server manages clients, sessions, windows and panes.
1008 Clients are attached to sessions to interact with them, either
1009 when they are created with the
1010 .Ic new-session
1011 command, or later with the
1012 .Ic attach-session
1013 command.
1014 Each session has one or more windows
1015 .Em linked
1016 into it.
1017 Windows may be linked to multiple sessions and are made up of one or
1018 more panes,
1019 each of which contains a pseudo terminal.
1020 Commands for creating, linking and otherwise manipulating windows
1021 are covered
1022 in the
1023 .Sx WINDOWS AND PANES
1024 section.
1026 The following commands are available to manage clients and sessions:
1027 .Bl -tag -width Ds
1028 .Tg attach
1029 .It Xo Ic attach-session
1030 .Op Fl dErx
1031 .Op Fl c Ar working-directory
1032 .Op Fl f Ar flags
1033 .Op Fl t Ar target-session
1035 .D1 Pq alias: Ic attach
1036 If run from outside
1037 .Nm ,
1038 create a new client in the current terminal and attach it to
1039 .Ar target-session .
1040 If used from inside, switch the current client.
1042 .Fl d
1043 is specified, any other clients attached to the session are detached.
1045 .Fl x
1046 is given, send
1047 .Dv SIGHUP
1048 to the parent process of the client as well as
1049 detaching the client, typically causing it to exit.
1050 .Fl f
1051 sets a comma-separated list of client flags.
1052 The flags are:
1053 .Bl -tag -width Ds
1054 .It active-pane
1055 the client has an independent active pane
1056 .It ignore-size
1057 the client does not affect the size of other clients
1058 .It no-output
1059 the client does not receive pane output in control mode
1060 .It pause-after=seconds
1061 output is paused once the pane is
1062 .Ar seconds
1063 behind in control mode
1064 .It read-only
1065 the client is read-only
1066 .It wait-exit
1067 wait for an empty line input before exiting in control mode
1070 A leading
1071 .Ql \&!
1072 turns a flag off if the client is already attached.
1073 .Fl r
1074 is an alias for
1075 .Fl f
1076 .Ar read-only,ignore-size .
1077 When a client is read-only, only keys bound to the
1078 .Ic detach-client
1080 .Ic switch-client
1081 commands have any effect.
1082 A client with the
1083 .Ar active-pane
1084 flag allows the active pane to be selected independently of the window's active
1085 pane used by clients without the flag.
1086 This only affects the cursor position and commands issued from the client;
1087 other features such as hooks and styles continue to use the window's active
1088 pane.
1090 If no server is started,
1091 .Ic attach-session
1092 will attempt to start it; this will fail unless sessions are created in the
1093 configuration file.
1096 .Ar target-session
1097 rules for
1098 .Ic attach-session
1099 are slightly adjusted: if
1101 needs to select the most recently used session, it will prefer the most
1102 recently used
1103 .Em unattached
1104 session.
1106 .Fl c
1107 will set the session working directory (used for new windows) to
1108 .Ar working-directory .
1111 .Fl E
1112 is used, the
1113 .Ic update-environment
1114 option will not be applied.
1115 .Tg detach
1116 .It Xo Ic detach-client
1117 .Op Fl aP
1118 .Op Fl E Ar shell-command
1119 .Op Fl s Ar target-session
1120 .Op Fl t Ar target-client
1122 .D1 Pq alias: Ic detach
1123 Detach the current client if bound to a key, the client specified with
1124 .Fl t ,
1125 or all clients currently attached to the session specified by
1126 .Fl s .
1128 .Fl a
1129 option kills all but the client given with
1130 .Fl t .
1132 .Fl P
1133 is given, send
1134 .Dv SIGHUP
1135 to the parent process of the client, typically causing it
1136 to exit.
1137 With
1138 .Fl E ,
1140 .Ar shell-command
1141 to replace the client.
1142 .Tg has
1143 .It Ic has-session Op Fl t Ar target-session
1144 .D1 Pq alias: Ic has
1145 Report an error and exit with 1 if the specified session does not exist.
1146 If it does exist, exit with 0.
1147 .It Ic kill-server
1148 Kill the
1150 server and clients and destroy all sessions.
1151 .It Xo Ic kill-session
1152 .Op Fl aC
1153 .Op Fl t Ar target-session
1155 Destroy the given session, closing any windows linked to it and no other
1156 sessions, and detaching all clients attached to it.
1158 .Fl a
1159 is given, all sessions but the specified one is killed.
1161 .Fl C
1162 flag clears alerts (bell, activity, or silence) in all windows linked to the
1163 session.
1164 .Tg lsc
1165 .It Xo Ic list-clients
1166 .Op Fl F Ar format
1167 .Op Fl t Ar target-session
1169 .D1 Pq alias: Ic lsc
1170 List all clients attached to the server.
1171 For the meaning of the
1172 .Fl F
1173 flag, see the
1174 .Sx FORMATS
1175 section.
1177 .Ar target-session
1178 is specified, list only clients connected to that session.
1179 .Tg lscm
1180 .It Xo Ic list-commands
1181 .Op Fl F Ar format
1182 .Op Ar command
1184 .D1 Pq alias: Ic lscm
1185 List the syntax of
1186 .Ar command
1187 or - if omitted - of all commands supported by
1188 .Nm .
1189 .Tg ls
1190 .It Xo Ic list-sessions
1191 .Op Fl F Ar format
1192 .Op Fl f Ar filter
1194 .D1 Pq alias: Ic ls
1195 List all sessions managed by the server.
1196 .Fl F
1197 specifies the format of each line and
1198 .Fl f
1199 a filter.
1200 Only sessions for which the filter is true are shown.
1201 See the
1202 .Sx FORMATS
1203 section.
1204 .Tg lockc
1205 .It Ic lock-client Op Fl t Ar target-client
1206 .D1 Pq alias: Ic lockc
1207 Lock
1208 .Ar target-client ,
1209 see the
1210 .Ic lock-server
1211 command.
1212 .Tg locks
1213 .It Ic lock-session Op Fl t Ar target-session
1214 .D1 Pq alias: Ic locks
1215 Lock all clients attached to
1216 .Ar target-session .
1217 .Tg new
1218 .It Xo Ic new-session
1219 .Op Fl AdDEPX
1220 .Op Fl c Ar start-directory
1221 .Op Fl e Ar environment
1222 .Op Fl f Ar flags
1223 .Op Fl F Ar format
1224 .Op Fl n Ar window-name
1225 .Op Fl s Ar session-name
1226 .Op Fl t Ar group-name
1227 .Op Fl x Ar width
1228 .Op Fl y Ar height
1229 .Op Ar shell-command
1231 .D1 Pq alias: Ic new
1232 Create a new session with name
1233 .Ar session-name .
1235 The new session is attached to the current terminal unless
1236 .Fl d
1237 is given.
1238 .Ar window-name
1240 .Ar shell-command
1241 are the name of and shell command to execute in the initial window.
1242 With
1243 .Fl d ,
1244 the initial size comes from the global
1245 .Ic default-size
1246 option;
1247 .Fl x
1249 .Fl y
1250 can be used to specify a different size.
1251 .Ql -
1252 uses the size of the current client if any.
1254 .Fl x
1256 .Fl y
1257 is given, the
1258 .Ic default-size
1259 option is set for the session.
1260 .Fl f
1261 sets a comma-separated list of client flags (see
1262 .Ic attach-session ) .
1264 If run from a terminal, any
1265 .Xr termios 4
1266 special characters are saved and used for new windows in the new session.
1269 .Fl A
1270 flag makes
1271 .Ic new-session
1272 behave like
1273 .Ic attach-session
1275 .Ar session-name
1276 already exists; in this case,
1277 .Fl D
1278 behaves like
1279 .Fl d
1281 .Ic attach-session ,
1283 .Fl X
1284 behaves like
1285 .Fl x
1287 .Ic attach-session .
1290 .Fl t
1291 is given, it specifies a
1292 .Ic session group .
1293 Sessions in the same group share the same set of windows - new windows are
1294 linked to all sessions in the group and any windows closed removed from all
1295 sessions.
1296 The current and previous window and any session options remain independent and
1297 any session in a group may be killed without affecting the others.
1299 .Ar group-name
1300 argument may be:
1301 .Bl -enum -width Ds
1303 the name of an existing group, in which case the new session is added to that
1304 group;
1306 the name of an existing session - the new session is added to the same group
1307 as that session, creating a new group if necessary;
1309 the name for a new group containing only the new session.
1312 .Fl n
1314 .Ar shell-command
1315 are invalid if
1316 .Fl t
1317 is used.
1320 .Fl P
1321 option prints information about the new session after it has been created.
1322 By default, it uses the format
1323 .Ql #{session_name}:\&
1324 but a different format may be specified with
1325 .Fl F .
1328 .Fl E
1329 is used, the
1330 .Ic update-environment
1331 option will not be applied.
1332 .Fl e
1333 takes the form
1334 .Ql VARIABLE=value
1335 and sets an environment variable for the newly created session; it may be
1336 specified multiple times.
1337 .Tg refresh
1338 .It Xo Ic refresh-client
1339 .Op Fl cDLRSU
1340 .Op Fl A Ar pane:state
1341 .Op Fl B Ar name:what:format
1342 .Op Fl C Ar size
1343 .Op Fl f Ar flags
1344 .Op Fl l Op Ar target-pane
1345 .Op Fl t Ar target-client
1346 .Op Ar adjustment
1348 .D1 Pq alias: Ic refresh
1349 Refresh the current client if bound to a key, or a single client if one is given
1350 with
1351 .Fl t .
1353 .Fl S
1354 is specified, only update the client's status line.
1357 .Fl U ,
1358 .Fl D ,
1359 .Fl L
1360 .Fl R ,
1362 .Fl c
1363 flags allow the visible portion of a window which is larger than the client
1364 to be changed.
1365 .Fl U
1366 moves the visible part up by
1367 .Ar adjustment
1368 rows and
1369 .Fl D
1370 down,
1371 .Fl L
1372 left by
1373 .Ar adjustment
1374 columns and
1375 .Fl R
1376 right.
1377 .Fl c
1378 returns to tracking the cursor automatically.
1380 .Ar adjustment
1381 is omitted, 1 is used.
1382 Note that the visible position is a property of the client not of the
1383 window, changing the current window in the attached session will reset
1386 .Fl C
1387 sets the width and height of a control mode client or of a window for a
1388 control mode client,
1389 .Ar size
1390 must be one of
1391 .Ql widthxheight
1393 .Ql window ID:widthxheight ,
1394 for example
1395 .Ql 80x24
1397 .Ql @0:80x24 .
1398 .Fl A
1399 allows a control mode client to trigger actions on a pane.
1400 The argument is a pane ID (with leading
1401 .Ql % ) ,
1402 a colon, then one of
1403 .Ql on ,
1404 .Ql off ,
1405 .Ql continue
1407 .Ql pause .
1409 .Ql off ,
1411 will not send output from the pane to the client and if all clients have turned
1412 the pane off, will stop reading from the pane.
1414 .Ql continue ,
1416 will return to sending output to the pane if it was paused (manually or with the
1417 .Ar pause-after
1418 flag).
1420 .Ql pause ,
1422 will pause the pane.
1423 .Fl A
1424 may be given multiple times for different panes.
1426 .Fl B
1427 sets a subscription to a format for a control mode client.
1428 The argument is split into three items by colons:
1429 .Ar name
1430 is a name for the subscription;
1431 .Ar what
1432 is a type of item to subscribe to;
1433 .Ar format
1434 is the format.
1435 After a subscription is added, changes to the format are reported with the
1436 .Ic %subscription-changed
1437 notification, at most once a second.
1438 If only the name is given, the subscription is removed.
1439 .Ar what
1440 may be empty to check the format only for the attached session, or one of:
1441 a pane ID such as
1442 .Ql %0 ;
1443 .Ql %*
1444 for all panes in the attached session;
1445 a window ID such as
1446 .Ql @0 ;
1448 .Ql @*
1449 for all windows in the attached session.
1451 .Fl f
1452 sets a comma-separated list of client flags, see
1453 .Ic attach-session .
1455 .Fl l
1456 requests the clipboard from the client using the
1457 .Xr xterm 1
1458 escape sequence.
1460 Ar target-pane
1461 is given, the clipboard is sent (in encoded form), otherwise it is stored in a
1462 new paste buffer.
1464 .Fl L ,
1465 .Fl R ,
1466 .Fl U
1468 .Fl D
1469 move the visible portion of the window left, right, up or down
1471 .Ar adjustment ,
1472 if the window is larger than the client.
1473 .Fl c
1474 resets so that the position follows the cursor.
1475 See the
1476 .Ic window-size
1477 option.
1478 .Tg rename
1479 .It Xo Ic rename-session
1480 .Op Fl t Ar target-session
1481 .Ar new-name
1483 .D1 Pq alias: Ic rename
1484 Rename the session to
1485 .Ar new-name .
1486 .It Xo Ic server-access
1487 .Op Fl adlrw
1488 .Op Ar user
1490 Change the access or read/write permission of
1491 .Ar user .
1492 The user running the
1494 server (its owner) and the root user cannot be changed and are always
1495 permitted access.
1497 .Fl a
1499 .Fl d
1500 are used to give or revoke access for the specified user.
1501 If the user is already attached, the
1502 .Fl d
1503 flag causes their clients to be detached.
1505 .Fl r
1507 .Fl w
1508 change the permissions for
1509 .Ar user :
1510 .Fl r
1511 makes their clients read-only and
1512 .Fl w
1513 writable.
1514 .Fl l
1515 lists current access permissions.
1517 By default, the access list is empty and
1519 creates sockets with file system permissions preventing access by any user
1520 other than the owner (and root).
1521 These permissions must be changed manually.
1522 Great care should be taken not to allow access to untrusted users even
1523 read-only.
1524 .Tg showmsgs
1525 .It Xo Ic show-messages
1526 .Op Fl JT
1527 .Op Fl t Ar target-client
1529 .D1 Pq alias: Ic showmsgs
1530 Show server messages or information.
1531 Messages are stored, up to a maximum of the limit set by the
1532 .Ar message-limit
1533 server option.
1534 .Fl J
1536 .Fl T
1537 show debugging information about jobs and terminals.
1538 .Tg source
1539 .It Xo Ic source-file
1540 .Op Fl Fnqv
1541 .Ar path ...
1543 .D1 Pq alias: Ic source
1544 Execute commands from one or more files specified by
1545 .Ar path
1546 (which may be
1547 .Xr glob 7
1548 patterns).
1550 .Fl F
1551 is present, then
1552 .Ar path
1553 is expanded as a format.
1555 .Fl q
1556 is given, no error will be returned if
1557 .Ar path
1558 does not exist.
1559 With
1560 .Fl n ,
1561 the file is parsed but no commands are executed.
1562 .Fl v
1563 shows the parsed commands and line numbers if possible.
1564 .Tg start
1565 .It Ic start-server
1566 .D1 Pq alias: Ic start
1567 Start the
1569 server, if not already running, without creating any sessions.
1571 Note that as by default the
1573 server will exit with no sessions, this is only useful if a session is created in
1574 .Pa ~/.tmux.conf ,
1575 .Ic exit-empty
1576 is turned off, or another command is run as part of the same command sequence.
1577 For example:
1578 .Bd -literal -offset indent
1579 $ tmux start \\; show -g
1581 .Tg suspendc
1582 .It Xo Ic suspend-client
1583 .Op Fl t Ar target-client
1585 .D1 Pq alias: Ic suspendc
1586 Suspend a client by sending
1587 .Dv SIGTSTP
1588 (tty stop).
1589 .Tg switchc
1590 .It Xo Ic switch-client
1591 .Op Fl ElnprZ
1592 .Op Fl c Ar target-client
1593 .Op Fl t Ar target-session
1594 .Op Fl T Ar key-table
1596 .D1 Pq alias: Ic switchc
1597 Switch the current session for client
1598 .Ar target-client
1600 .Ar target-session .
1601 As a special case,
1602 .Fl t
1603 may refer to a pane (a target that contains
1604 .Ql \&: ,
1605 .Ql \&.
1607 .Ql % ) ,
1608 to change session, window and pane.
1609 In that case,
1610 .Fl Z
1611 keeps the window zoomed if it was zoomed.
1613 .Fl l ,
1614 .Fl n
1616 .Fl p
1617 is used, the client is moved to the last, next or previous session
1618 respectively.
1619 .Fl r
1620 toggles the client
1621 .Ic read-only
1623 .Ic ignore-size
1624 flags (see the
1625 .Ic attach-session
1626 command).
1629 .Fl E
1630 is used,
1631 .Ic update-environment
1632 option will not be applied.
1634 .Fl T
1635 sets the client's key table; the next key from the client will be interpreted
1636 from
1637 .Ar key-table .
1638 This may be used to configure multiple prefix keys, or to bind commands to
1639 sequences of keys.
1640 For example, to make typing
1641 .Ql abc
1642 run the
1643 .Ic list-keys
1644 command:
1645 .Bd -literal -offset indent
1646 bind-key -Ttable2 c list-keys
1647 bind-key -Ttable1 b switch-client -Ttable2
1648 bind-key -Troot   a switch-client -Ttable1
1651 .Sh WINDOWS AND PANES
1652 Each window displayed by
1654 may be split into one or more
1655 .Em panes ;
1656 each pane takes up a certain area of the display and is a separate terminal.
1657 A window may be split into panes using the
1658 .Ic split-window
1659 command.
1660 Windows may be split horizontally (with the
1661 .Fl h
1662 flag) or vertically.
1663 Panes may be resized with the
1664 .Ic resize-pane
1665 command (bound to
1666 .Ql C-Up ,
1667 .Ql C-Down
1668 .Ql C-Left
1670 .Ql C-Right
1671 by default), the current pane may be changed with the
1672 .Ic select-pane
1673 command and the
1674 .Ic rotate-window
1676 .Ic swap-pane
1677 commands may be used to swap panes without changing their position.
1678 Panes are numbered beginning from zero in the order they are created.
1680 By default, a
1682 pane permits direct access to the terminal contained in the pane.
1683 A pane may also be put into one of several modes:
1684 .Bl -dash -offset indent
1686 Copy mode, which permits a section of a window or its
1687 history to be copied to a
1688 .Em paste buffer
1689 for later insertion into another window.
1690 This mode is entered with the
1691 .Ic copy-mode
1692 command, bound to
1693 .Ql \&[
1694 by default.
1695 Copied text can be pasted with the
1696 .Ic paste-buffer
1697 command, bound to
1698 .Ql \&] .
1700 View mode, which is like copy mode but is entered when a command that produces
1701 output, such as
1702 .Ic list-keys ,
1703 is executed from a key binding.
1705 Choose mode, which allows an item to be chosen from a list.
1706 This may be a client, a session or window or pane, or a buffer.
1707 This mode is entered with the
1708 .Ic choose-buffer ,
1709 .Ic choose-client
1711 .Ic choose-tree
1712 commands.
1715 In copy mode an indicator is displayed in the top-right corner of the pane with
1716 the current position and the number of lines in the history.
1718 Commands are sent to copy mode using the
1719 .Fl X
1720 flag to the
1721 .Ic send-keys
1722 command.
1723 When a key is pressed, copy mode automatically uses one of two key tables,
1724 depending on the
1725 .Ic mode-keys
1726 option:
1727 .Ic copy-mode
1728 for emacs, or
1729 .Ic copy-mode-vi
1730 for vi.
1731 Key tables may be viewed with the
1732 .Ic list-keys
1733 command.
1735 The following commands are supported in copy mode:
1736 .Bl -column "CommandXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" "viXXXXXXXXXX" "emacs" -offset indent
1737 .It Sy "Command" Ta Sy "vi" Ta Sy "emacs"
1738 .It Li "append-selection" Ta "" Ta ""
1739 .It Li "append-selection-and-cancel" Ta "A" Ta ""
1740 .It Li "back-to-indentation" Ta "^" Ta "M-m"
1741 .It Li "begin-selection" Ta "Space" Ta "C-Space"
1742 .It Li "bottom-line" Ta "L" Ta ""
1743 .It Li "cancel" Ta "q" Ta "Escape"
1744 .It Li "clear-selection" Ta "Escape" Ta "C-g"
1745 .It Li "copy-end-of-line [<prefix>]" Ta "" Ta ""
1746 .It Li "copy-end-of-line-and-cancel [<prefix>]" Ta "" Ta ""
1747 .It Li "copy-pipe-end-of-line [<command>] [<prefix>]" Ta "" Ta ""
1748 .It Li "copy-pipe-end-of-line-and-cancel [<command>] [<prefix>]" Ta "D" Ta "C-k"
1749 .It Li "copy-line [<prefix>]" Ta "" Ta ""
1750 .It Li "copy-line-and-cancel [<prefix>]" Ta "" Ta ""
1751 .It Li "copy-pipe-line [<command>] [<prefix>]" Ta "" Ta ""
1752 .It Li "copy-pipe-line-and-cancel [<command>] [<prefix>]" Ta "" Ta ""
1753 .It Li "copy-pipe [<command>] [<prefix>]" Ta "" Ta ""
1754 .It Li "copy-pipe-no-clear [<command>] [<prefix>]" Ta "" Ta ""
1755 .It Li "copy-pipe-and-cancel [<command>] [<prefix>]" Ta "" Ta ""
1756 .It Li "copy-selection [<prefix>]" Ta "" Ta ""
1757 .It Li "copy-selection-no-clear [<prefix>]" Ta "" Ta ""
1758 .It Li "copy-selection-and-cancel [<prefix>]" Ta "Enter" Ta "M-w"
1759 .It Li "cursor-down" Ta "j" Ta "Down"
1760 .It Li "cursor-down-and-cancel" Ta "" Ta ""
1761 .It Li "cursor-left" Ta "h" Ta "Left"
1762 .It Li "cursor-right" Ta "l" Ta "Right"
1763 .It Li "cursor-up" Ta "k" Ta "Up"
1764 .It Li "end-of-line" Ta "$" Ta "C-e"
1765 .It Li "goto-line <line>" Ta ":" Ta "g"
1766 .It Li "halfpage-down" Ta "C-d" Ta "M-Down"
1767 .It Li "halfpage-down-and-cancel" Ta "" Ta ""
1768 .It Li "halfpage-up" Ta "C-u" Ta "M-Up"
1769 .It Li "history-bottom" Ta "G" Ta "M->"
1770 .It Li "history-top" Ta "g" Ta "M-<"
1771 .It Li "jump-again" Ta ";" Ta ";"
1772 .It Li "jump-backward <to>" Ta "F" Ta "F"
1773 .It Li "jump-forward <to>" Ta "f" Ta "f"
1774 .It Li "jump-reverse" Ta "," Ta ","
1775 .It Li "jump-to-backward <to>" Ta "T" Ta ""
1776 .It Li "jump-to-forward <to>" Ta "t" Ta ""
1777 .It Li "jump-to-mark" Ta "M-x" Ta "M-x"
1778 .It Li "middle-line" Ta "M" Ta "M-r"
1779 .It Li "next-matching-bracket" Ta "%" Ta "M-C-f"
1780 .It Li "next-paragraph" Ta "}" Ta "M-}"
1781 .It Li "next-space" Ta "W" Ta ""
1782 .It Li "next-space-end" Ta "E" Ta ""
1783 .It Li "next-word" Ta "w" Ta ""
1784 .It Li "next-word-end" Ta "e" Ta "M-f"
1785 .It Li "other-end" Ta "o" Ta ""
1786 .It Li "page-down" Ta "C-f" Ta "PageDown"
1787 .It Li "page-down-and-cancel" Ta "" Ta ""
1788 .It Li "page-up" Ta "C-b" Ta "PageUp"
1789 .It Li "pipe [<command>] [<prefix>]" Ta "" Ta ""
1790 .It Li "pipe-no-clear [<command>] [<prefix>]" Ta "" Ta ""
1791 .It Li "pipe-and-cancel [<command>] [<prefix>]" Ta "" Ta ""
1792 .It Li "previous-matching-bracket" Ta "" Ta "M-C-b"
1793 .It Li "previous-paragraph" Ta "{" Ta "M-{"
1794 .It Li "previous-space" Ta "B" Ta ""
1795 .It Li "previous-word" Ta "b" Ta "M-b"
1796 .It Li "rectangle-on" Ta "" Ta ""
1797 .It Li "rectangle-off" Ta "" Ta ""
1798 .It Li "rectangle-toggle" Ta "v" Ta "R"
1799 .It Li "refresh-from-pane" Ta "r" Ta "r"
1800 .It Li "scroll-down" Ta "C-e" Ta "C-Down"
1801 .It Li "scroll-down-and-cancel" Ta "" Ta ""
1802 .It Li "scroll-up" Ta "C-y" Ta "C-Up"
1803 .It Li "search-again" Ta "n" Ta "n"
1804 .It Li "search-backward <for>" Ta "?" Ta ""
1805 .It Li "search-backward-incremental <for>" Ta "" Ta "C-r"
1806 .It Li "search-backward-text <for>" Ta "" Ta ""
1807 .It Li "search-forward <for>" Ta "/" Ta ""
1808 .It Li "search-forward-incremental <for>" Ta "" Ta "C-s"
1809 .It Li "search-forward-text <for>" Ta "" Ta ""
1810 .It Li "scroll-bottom" Ta "" Ta ""
1811 .It Li "scroll-middle" Ta "z" Ta ""
1812 .It Li "scroll-top" Ta "" Ta ""
1813 .It Li "search-reverse" Ta "N" Ta "N"
1814 .It Li "select-line" Ta "V" Ta ""
1815 .It Li "select-word" Ta "" Ta ""
1816 .It Li "set-mark" Ta "X" Ta "X"
1817 .It Li "start-of-line" Ta "0" Ta "C-a"
1818 .It Li "stop-selection" Ta "" Ta ""
1819 .It Li "toggle-position" Ta "P" Ta "P"
1820 .It Li "top-line" Ta "H" Ta "M-R"
1823 The search commands come in several varieties:
1824 .Ql search-forward
1826 .Ql search-backward
1827 search for a regular expression;
1829 .Ql -text
1830 variants search for a plain text string rather than a regular expression;
1831 .Ql -incremental
1832 perform an incremental search and expect to be used with the
1833 .Fl i
1834 flag to the
1835 .Ic command-prompt
1836 command.
1837 .Ql search-again
1838 repeats the last search and
1839 .Ql search-reverse
1840 does the same but reverses the direction (forward becomes backward and backward
1841 becomes forward).
1843 Copy commands may take an optional buffer prefix argument which is used
1844 to generate the buffer name (the default is
1845 .Ql buffer
1846 so buffers are named
1847 .Ql buffer0 ,
1848 .Ql buffer1
1849 and so on).
1850 Pipe commands take a command argument which is the command to which the
1851 selected text is piped.
1852 .Ql copy-pipe
1853 variants also copy the selection.
1855 .Ql -and-cancel
1856 variants of some commands exit copy mode after they have completed (for copy
1857 commands) or when the cursor reaches the bottom (for scrolling commands).
1858 .Ql -no-clear
1859 variants do not clear the selection.
1861 The next and previous word keys skip over whitespace and treat consecutive
1862 runs of either word separators or other letters as words.
1863 Word separators can be customized with the
1864 .Em word-separators
1865 session option.
1866 Next word moves to the start of the next word, next word end to the end of the
1867 next word and previous word to the start of the previous word.
1868 The three next and previous space keys work similarly but use a space alone as
1869 the word separator.
1870 Setting
1871 .Em word-separators
1872 to the empty string makes next/previous word equivalent to next/previous space.
1874 The jump commands enable quick movement within a line.
1875 For instance, typing
1876 .Ql f
1877 followed by
1878 .Ql /
1879 will move the cursor to the next
1880 .Ql /
1881 character on the current line.
1883 .Ql \&;
1884 will then jump to the next occurrence.
1886 Commands in copy mode may be prefaced by an optional repeat count.
1887 With vi key bindings, a prefix is entered using the number keys; with
1888 emacs, the Alt (meta) key and a number begins prefix entry.
1890 The synopsis for the
1891 .Ic copy-mode
1892 command is:
1893 .Bl -tag -width Ds
1894 .It Xo Ic copy-mode
1895 .Op Fl eHMqu
1896 .Op Fl s Ar src-pane
1897 .Op Fl t Ar target-pane
1899 Enter copy mode.
1901 .Fl u
1902 option scrolls one page up.
1903 .Fl M
1904 begins a mouse drag (only valid if bound to a mouse key binding, see
1905 .Sx MOUSE SUPPORT ) .
1906 .Fl H
1907 hides the position indicator in the top right.
1908 .Fl q
1909 cancels copy mode and any other modes.
1910 .Fl s
1911 copies from
1912 .Ar src-pane
1913 instead of
1914 .Ar target-pane .
1916 .Fl e
1917 specifies that scrolling to the bottom of the history (to the visible screen)
1918 should exit copy mode.
1919 While in copy mode, pressing a key other than those used for scrolling will
1920 disable this behaviour.
1921 This is intended to allow fast scrolling through a pane's history, for
1922 example with:
1923 .Bd -literal -offset indent
1924 bind PageUp copy-mode -eu
1928 A number of preset arrangements of panes are available, these are called layouts.
1929 These may be selected with the
1930 .Ic select-layout
1931 command or cycled with
1932 .Ic next-layout
1933 (bound to
1934 .Ql Space
1935 by default); once a layout is chosen, panes within it may be moved and resized
1936 as normal.
1938 The following layouts are supported:
1939 .Bl -tag -width Ds
1940 .It Ic even-horizontal
1941 Panes are spread out evenly from left to right across the window.
1942 .It Ic even-vertical
1943 Panes are spread evenly from top to bottom.
1944 .It Ic main-horizontal
1945 A large (main) pane is shown at the top of the window and the remaining panes
1946 are spread from left to right in the leftover space at the bottom.
1947 Use the
1948 .Em main-pane-height
1949 window option to specify the height of the top pane.
1950 .It Ic main-vertical
1951 Similar to
1952 .Ic main-horizontal
1953 but the large pane is placed on the left and the others spread from top to
1954 bottom along the right.
1955 See the
1956 .Em main-pane-width
1957 window option.
1958 .It Ic tiled
1959 Panes are spread out as evenly as possible over the window in both rows and
1960 columns.
1963 In addition,
1964 .Ic select-layout
1965 may be used to apply a previously used layout - the
1966 .Ic list-windows
1967 command displays the layout of each window in a form suitable for use with
1968 .Ic select-layout .
1969 For example:
1970 .Bd -literal -offset indent
1971 $ tmux list-windows
1972 0: ksh [159x48]
1973     layout: bb62,159x48,0,0{79x48,0,0,79x48,80,0}
1974 $ tmux select-layout 'bb62,159x48,0,0{79x48,0,0,79x48,80,0}'
1978 automatically adjusts the size of the layout for the current window size.
1979 Note that a layout cannot be applied to a window with more panes than that
1980 from which the layout was originally defined.
1982 Commands related to windows and panes are as follows:
1983 .Bl -tag -width Ds
1984 .Tg breakp
1985 .It Xo Ic break-pane
1986 .Op Fl abdP
1987 .Op Fl F Ar format
1988 .Op Fl n Ar window-name
1989 .Op Fl s Ar src-pane
1990 .Op Fl t Ar dst-window
1992 .D1 Pq alias: Ic breakp
1993 Break
1994 .Ar src-pane
1995 off from its containing window to make it the only pane in
1996 .Ar dst-window .
1997 With
1998 .Fl a
2000 .Fl b ,
2001 the window is moved to the next index after or before (existing windows are
2002 moved if necessary).
2004 .Fl d
2005 is given, the new window does not become the current window.
2007 .Fl P
2008 option prints information about the new window after it has been created.
2009 By default, it uses the format
2010 .Ql #{session_name}:#{window_index}.#{pane_index}
2011 but a different format may be specified with
2012 .Fl F .
2013 .Tg capturep
2014 .It Xo Ic capture-pane
2015 .Op Fl aAepPqCJN
2016 .Op Fl b Ar buffer-name
2017 .Op Fl E Ar end-line
2018 .Op Fl S Ar start-line
2019 .Op Fl t Ar target-pane
2021 .D1 Pq alias: Ic capturep
2022 Capture the contents of a pane.
2024 .Fl p
2025 is given, the output goes to stdout, otherwise to the buffer specified with
2026 .Fl b
2027 or a new buffer if omitted.
2029 .Fl a
2030 is given, the alternate screen is used, and the history is not accessible.
2031 If no alternate screen exists, an error will be returned unless
2032 .Fl q
2033 is given.
2035 .Fl e
2036 is given, the output includes escape sequences for text and background
2037 attributes.
2038 .Fl C
2039 also escapes non-printable characters as octal \exxx.
2040 .Fl T
2041 ignores trailing positions that do not contain a character.
2042 .Fl N
2043 preserves trailing spaces at each line's end and
2044 .Fl J
2045 preserves trailing spaces and joins any wrapped lines;
2046 .Fl J
2047 implies
2048 .Fl T .
2049 .Fl P
2050 captures only any output that the pane has received that is the beginning of an
2051 as-yet incomplete escape sequence.
2053 .Fl S
2055 .Fl E
2056 specify the starting and ending line numbers, zero is the first line of the
2057 visible pane and negative numbers are lines in the history.
2058 .Ql -
2060 .Fl S
2061 is the start of the history and to
2062 .Fl E
2063 the end of the visible pane.
2064 The default is to capture only the visible contents of the pane.
2065 .It Xo
2066 .Ic choose-client
2067 .Op Fl NrZ
2068 .Op Fl F Ar format
2069 .Op Fl f Ar filter
2070 .Op Fl K Ar key-format
2071 .Op Fl O Ar sort-order
2072 .Op Fl t Ar target-pane
2073 .Op Ar template
2075 Put a pane into client mode, allowing a client to be selected interactively from
2076 a list.
2077 Each client is shown on one line.
2078 A shortcut key is shown on the left in brackets allowing for immediate choice,
2079 or the list may be navigated and an item chosen or otherwise manipulated using
2080 the keys below.
2081 .Fl Z
2082 zooms the pane.
2083 The following keys may be used in client mode:
2084 .Bl -column "Key" "Function" -offset indent
2085 .It Sy "Key" Ta Sy "Function"
2086 .It Li "Enter" Ta "Choose selected client"
2087 .It Li "Up" Ta "Select previous client"
2088 .It Li "Down" Ta "Select next client"
2089 .It Li "C-s" Ta "Search by name"
2090 .It Li "n" Ta "Repeat last search"
2091 .It Li "t" Ta "Toggle if client is tagged"
2092 .It Li "T" Ta "Tag no clients"
2093 .It Li "C-t" Ta "Tag all clients"
2094 .It Li "d" Ta "Detach selected client"
2095 .It Li "D" Ta "Detach tagged clients"
2096 .It Li "x" Ta "Detach and HUP selected client"
2097 .It Li "X" Ta "Detach and HUP tagged clients"
2098 .It Li "z" Ta "Suspend selected client"
2099 .It Li "Z" Ta "Suspend tagged clients"
2100 .It Li "f" Ta "Enter a format to filter items"
2101 .It Li "O" Ta "Change sort field"
2102 .It Li "r" Ta "Reverse sort order"
2103 .It Li "v" Ta "Toggle preview"
2104 .It Li "q" Ta "Exit mode"
2107 After a client is chosen,
2108 .Ql %%
2109 is replaced by the client name in
2110 .Ar template
2111 and the result executed as a command.
2113 .Ar template
2114 is not given, "detach-client -t '%%'" is used.
2116 .Fl O
2117 specifies the initial sort field: one of
2118 .Ql name ,
2119 .Ql size ,
2120 .Ql creation
2121 (time),
2123 .Ql activity
2124 (time).
2125 .Fl r
2126 reverses the sort order.
2127 .Fl f
2128 specifies an initial filter: the filter is a format - if it evaluates to zero,
2129 the item in the list is not shown, otherwise it is shown.
2130 If a filter would lead to an empty list, it is ignored.
2131 .Fl F
2132 specifies the format for each item in the list and
2133 .Fl K
2134 a format for each shortcut key; both are evaluated once for each line.
2135 .Fl N
2136 starts without the preview.
2137 This command works only if at least one client is attached.
2138 .It Xo
2139 .Ic choose-tree
2140 .Op Fl GNrswZ
2141 .Op Fl F Ar format
2142 .Op Fl f Ar filter
2143 .Op Fl K Ar key-format
2144 .Op Fl O Ar sort-order
2145 .Op Fl t Ar target-pane
2146 .Op Ar template
2148 Put a pane into tree mode, where a session, window or pane may be chosen
2149 interactively from a tree.
2150 Each session, window or pane is shown on one line.
2151 A shortcut key is shown on the left in brackets allowing for immediate choice,
2152 or the tree may be navigated and an item chosen or otherwise manipulated using
2153 the keys below.
2154 .Fl s
2155 starts with sessions collapsed and
2156 .Fl w
2157 with windows collapsed.
2158 .Fl Z
2159 zooms the pane.
2160 The following keys may be used in tree mode:
2161 .Bl -column "Key" "Function" -offset indent
2162 .It Sy "Key" Ta Sy "Function"
2163 .It Li "Enter" Ta "Choose selected item"
2164 .It Li "Up" Ta "Select previous item"
2165 .It Li "Down" Ta "Select next item"
2166 .It Li "+" Ta "Expand selected item"
2167 .It Li "-" Ta "Collapse selected item"
2168 .It Li "M-+" Ta "Expand all items"
2169 .It Li "M--" Ta "Collapse all items"
2170 .It Li "x" Ta "Kill selected item"
2171 .It Li "X" Ta "Kill tagged items"
2172 .It Li "<" Ta "Scroll list of previews left"
2173 .It Li ">" Ta "Scroll list of previews right"
2174 .It Li "C-s" Ta "Search by name"
2175 .It Li "m" Ta "Set the marked pane"
2176 .It Li "M" Ta "Clear the marked pane"
2177 .It Li "n" Ta "Repeat last search"
2178 .It Li "t" Ta "Toggle if item is tagged"
2179 .It Li "T" Ta "Tag no items"
2180 .It Li "C-t" Ta "Tag all items"
2181 .It Li "\&:" Ta "Run a command for each tagged item"
2182 .It Li "f" Ta "Enter a format to filter items"
2183 .It Li "H" Ta "Jump to the starting pane"
2184 .It Li "O" Ta "Change sort field"
2185 .It Li "r" Ta "Reverse sort order"
2186 .It Li "v" Ta "Toggle preview"
2187 .It Li "q" Ta "Exit mode"
2190 After a session, window or pane is chosen, the first instance of
2191 .Ql %%
2192 and all instances of
2193 .Ql %1
2194 are replaced by the target in
2195 .Ar template
2196 and the result executed as a command.
2198 .Ar template
2199 is not given, "switch-client -t '%%'" is used.
2201 .Fl O
2202 specifies the initial sort field: one of
2203 .Ql index ,
2204 .Ql name ,
2206 .Ql time
2207 (activity).
2208 .Fl r
2209 reverses the sort order.
2210 .Fl f
2211 specifies an initial filter: the filter is a format - if it evaluates to zero,
2212 the item in the list is not shown, otherwise it is shown.
2213 If a filter would lead to an empty list, it is ignored.
2214 .Fl F
2215 specifies the format for each item in the tree and
2216 .Fl K
2217 a format for each shortcut key; both are evaluated once for each line.
2218 .Fl N
2219 starts without the preview.
2220 .Fl G
2221 includes all sessions in any session groups in the tree rather than only the
2222 first.
2223 This command works only if at least one client is attached.
2224 .It Xo
2225 .Ic customize-mode
2226 .Op Fl NZ
2227 .Op Fl F Ar format
2228 .Op Fl f Ar filter
2229 .Op Fl t Ar target-pane
2230 .Op Ar template
2232 Put a pane into customize mode, where options and key bindings may be browsed
2233 and modified from a list.
2234 Option values in the list are shown for the active pane in the current window.
2235 .Fl Z
2236 zooms the pane.
2237 The following keys may be used in customize mode:
2238 .Bl -column "Key" "Function" -offset indent
2239 .It Sy "Key" Ta Sy "Function"
2240 .It Li "Enter" Ta "Set pane, window, session or global option value"
2241 .It Li "Up" Ta "Select previous item"
2242 .It Li "Down" Ta "Select next item"
2243 .It Li "+" Ta "Expand selected item"
2244 .It Li "-" Ta "Collapse selected item"
2245 .It Li "M-+" Ta "Expand all items"
2246 .It Li "M--" Ta "Collapse all items"
2247 .It Li "s" Ta "Set option value or key attribute"
2248 .It Li "S" Ta "Set global option value"
2249 .It Li "w" Ta "Set window option value, if option is for pane and window"
2250 .It Li "d" Ta "Set an option or key to the default"
2251 .It Li "D" Ta "Set tagged options and tagged keys to the default"
2252 .It Li "u" Ta "Unset an option (set to default value if global) or unbind a key"
2253 .It Li "U" Ta "Unset tagged options and unbind tagged keys"
2254 .It Li "C-s" Ta "Search by name"
2255 .It Li "n" Ta "Repeat last search"
2256 .It Li "t" Ta "Toggle if item is tagged"
2257 .It Li "T" Ta "Tag no items"
2258 .It Li "C-t" Ta "Tag all items"
2259 .It Li "f" Ta "Enter a format to filter items"
2260 .It Li "v" Ta "Toggle option information"
2261 .It Li "q" Ta "Exit mode"
2264 .Fl f
2265 specifies an initial filter: the filter is a format - if it evaluates to zero,
2266 the item in the list is not shown, otherwise it is shown.
2267 If a filter would lead to an empty list, it is ignored.
2268 .Fl F
2269 specifies the format for each item in the tree.
2270 .Fl N
2271 starts without the option information.
2272 This command works only if at least one client is attached.
2273 .It Xo
2274 .Tg displayp
2275 .Ic display-panes
2276 .Op Fl bN
2277 .Op Fl d Ar duration
2278 .Op Fl t Ar target-client
2279 .Op Ar template
2281 .D1 Pq alias: Ic displayp
2282 Display a visible indicator of each pane shown by
2283 .Ar target-client .
2284 See the
2285 .Ic display-panes-colour
2287 .Ic display-panes-active-colour
2288 session options.
2289 The indicator is closed when a key is pressed (unless
2290 .Fl N
2291 is given) or
2292 .Ar duration
2293 milliseconds have passed.
2295 .Fl d
2296 is not given,
2297 .Ic display-panes-time
2298 is used.
2299 A duration of zero means the indicator stays until a key is pressed.
2300 While the indicator is on screen, a pane may be chosen with the
2301 .Ql 0
2303 .Ql 9
2304 keys, which will cause
2305 .Ar template
2306 to be executed as a command with
2307 .Ql %%
2308 substituted by the pane ID.
2309 The default
2310 .Ar template
2311 is "select-pane -t '%%'".
2312 With
2313 .Fl b ,
2314 other commands are not blocked from running until the indicator is closed.
2315 .Tg findw
2316 .It Xo Ic find-window
2317 .Op Fl iCNrTZ
2318 .Op Fl t Ar target-pane
2319 .Ar match-string
2321 .D1 Pq alias: Ic findw
2322 Search for a
2323 .Xr fnmatch 3
2324 pattern or, with
2325 .Fl r ,
2326 regular expression
2327 .Ar match-string
2328 in window names, titles, and visible content (but not history).
2329 The flags control matching behavior:
2330 .Fl C
2331 matches only visible window contents,
2332 .Fl N
2333 matches only the window name and
2334 .Fl T
2335 matches only the window title.
2336 .Fl i
2337 makes the search ignore case.
2338 The default is
2339 .Fl CNT .
2340 .Fl Z
2341 zooms the pane.
2343 This command works only if at least one client is attached.
2344 .Tg joinp
2345 .It Xo Ic join-pane
2346 .Op Fl bdfhv
2347 .Op Fl l Ar size
2348 .Op Fl s Ar src-pane
2349 .Op Fl t Ar dst-pane
2351 .D1 Pq alias: Ic joinp
2352 Like
2353 .Ic split-window ,
2354 but instead of splitting
2355 .Ar dst-pane
2356 and creating a new pane, split it and move
2357 .Ar src-pane
2358 into the space.
2359 This can be used to reverse
2360 .Ic break-pane .
2362 .Fl b
2363 option causes
2364 .Ar src-pane
2365 to be joined to left of or above
2366 .Ar dst-pane .
2369 .Fl s
2370 is omitted and a marked pane is present (see
2371 .Ic select-pane
2372 .Fl m ) ,
2373 the marked pane is used rather than the current pane.
2374 .Tg killp
2375 .It Xo Ic kill-pane
2376 .Op Fl a
2377 .Op Fl t Ar target-pane
2379 .D1 Pq alias: Ic killp
2380 Destroy the given pane.
2381 If no panes remain in the containing window, it is also destroyed.
2383 .Fl a
2384 option kills all but the pane given with
2385 .Fl t .
2386 .Tg killw
2387 .It Xo Ic kill-window
2388 .Op Fl a
2389 .Op Fl t Ar target-window
2391 .D1 Pq alias: Ic killw
2392 Kill the current window or the window at
2393 .Ar target-window ,
2394 removing it from any sessions to which it is linked.
2396 .Fl a
2397 option kills all but the window given with
2398 .Fl t .
2399 .Tg lastp
2400 .It Xo Ic last-pane
2401 .Op Fl deZ
2402 .Op Fl t Ar target-window
2404 .D1 Pq alias: Ic lastp
2405 Select the last (previously selected) pane.
2406 .Fl Z
2407 keeps the window zoomed if it was zoomed.
2408 .Fl e
2409 enables or
2410 .Fl d
2411 disables input to the pane.
2412 .Tg last
2413 .It Ic last-window Op Fl t Ar target-session
2414 .D1 Pq alias: Ic last
2415 Select the last (previously selected) window.
2416 If no
2417 .Ar target-session
2418 is specified, select the last window of the current session.
2419 .Tg link
2420 .It Xo Ic link-window
2421 .Op Fl abdk
2422 .Op Fl s Ar src-window
2423 .Op Fl t Ar dst-window
2425 .D1 Pq alias: Ic linkw
2426 Link the window at
2427 .Ar src-window
2428 to the specified
2429 .Ar dst-window .
2431 .Ar dst-window
2432 is specified and no such window exists, the
2433 .Ar src-window
2434 is linked there.
2435 With
2436 .Fl a
2438 .Fl b
2439 the window is moved to the next index after or before
2440 .Ar dst-window
2441 (existing windows are moved if necessary).
2443 .Fl k
2444 is given and
2445 .Ar dst-window
2446 exists, it is killed, otherwise an error is generated.
2448 .Fl d
2449 is given, the newly linked window is not selected.
2450 .Tg lsp
2451 .It Xo Ic list-panes
2452 .Op Fl as
2453 .Op Fl F Ar format
2454 .Op Fl f Ar filter
2455 .Op Fl t Ar target
2457 .D1 Pq alias: Ic lsp
2459 .Fl a
2460 is given,
2461 .Ar target
2462 is ignored and all panes on the server are listed.
2464 .Fl s
2465 is given,
2466 .Ar target
2467 is a session (or the current session).
2468 If neither is given,
2469 .Ar target
2470 is a window (or the current window).
2471 .Fl F
2472 specifies the format of each line and
2473 .Fl f
2474 a filter.
2475 Only panes for which the filter is true are shown.
2476 See the
2477 .Sx FORMATS
2478 section.
2479 .Tg lsw
2480 .It Xo Ic list-windows
2481 .Op Fl a
2482 .Op Fl F Ar format
2483 .Op Fl f Ar filter
2484 .Op Fl t Ar target-session
2486 .D1 Pq alias: Ic lsw
2488 .Fl a
2489 is given, list all windows on the server.
2490 Otherwise, list windows in the current session or in
2491 .Ar target-session .
2492 .Fl F
2493 specifies the format of each line and
2494 .Fl f
2495 a filter.
2496 Only windows for which the filter is true are shown.
2497 See the
2498 .Sx FORMATS
2499 section.
2500 .Tg movep
2501 .It Xo Ic move-pane
2502 .Op Fl bdfhv
2503 .Op Fl l Ar size
2504 .Op Fl s Ar src-pane
2505 .Op Fl t Ar dst-pane
2507 .D1 Pq alias: Ic movep
2508 Does the same as
2509 .Ic join-pane .
2510 .Tg movew
2511 .It Xo Ic move-window
2512 .Op Fl abrdk
2513 .Op Fl s Ar src-window
2514 .Op Fl t Ar dst-window
2516 .D1 Pq alias: Ic movew
2517 This is similar to
2518 .Ic link-window ,
2519 except the window at
2520 .Ar src-window
2521 is moved to
2522 .Ar dst-window .
2523 With
2524 .Fl r ,
2525 all windows in the session are renumbered in sequential order, respecting
2527 .Ic base-index
2528 option.
2529 .Tg neww
2530 .It Xo Ic new-window
2531 .Op Fl abdkPS
2532 .Op Fl c Ar start-directory
2533 .Op Fl e Ar environment
2534 .Op Fl F Ar format
2535 .Op Fl n Ar window-name
2536 .Op Fl t Ar target-window
2537 .Op Ar shell-command
2539 .D1 Pq alias: Ic neww
2540 Create a new window.
2541 With
2542 .Fl a
2544 .Fl b ,
2545 the new window is inserted at the next index after or before the specified
2546 .Ar target-window ,
2547 moving windows up if necessary;
2548 otherwise
2549 .Ar target-window
2550 is the new window location.
2553 .Fl d
2554 is given, the session does not make the new window the current window.
2555 .Ar target-window
2556 represents the window to be created; if the target already exists an error is
2557 shown, unless the
2558 .Fl k
2559 flag is used, in which case it is destroyed.
2561 .Fl S
2562 is given and a window named
2563 .Ar window-name
2564 already exists, it is selected (unless
2565 .Fl d
2566 is also given in which case the command does nothing).
2568 .Ar shell-command
2569 is the command to execute.
2571 .Ar shell-command
2572 is not specified, the value of the
2573 .Ic default-command
2574 option is used.
2575 .Fl c
2576 specifies the working directory in which the new window is created.
2578 When the shell command completes, the window closes.
2579 See the
2580 .Ic remain-on-exit
2581 option to change this behaviour.
2583 .Fl e
2584 takes the form
2585 .Ql VARIABLE=value
2586 and sets an environment variable for the newly created window; it may be
2587 specified multiple times.
2590 .Ev TERM
2591 environment variable must be set to
2592 .Ql screen
2594 .Ql tmux
2595 for all programs running
2596 .Em inside
2597 .Nm .
2598 New windows will automatically have
2599 .Ql TERM=screen
2600 added to their environment, but care must be taken not to reset this in shell
2601 start-up files or by the
2602 .Fl e
2603 option.
2606 .Fl P
2607 option prints information about the new window after it has been created.
2608 By default, it uses the format
2609 .Ql #{session_name}:#{window_index}
2610 but a different format may be specified with
2611 .Fl F .
2612 .Tg nextl
2613 .It Ic next-layout Op Fl t Ar target-window
2614 .D1 Pq alias: Ic nextl
2615 Move a window to the next layout and rearrange the panes to fit.
2616 .Tg next
2617 .It Xo Ic next-window
2618 .Op Fl a
2619 .Op Fl t Ar target-session
2621 .D1 Pq alias: Ic next
2622 Move to the next window in the session.
2624 .Fl a
2625 is used, move to the next window with an alert.
2626 .Tg pipep
2627 .It Xo Ic pipe-pane
2628 .Op Fl IOo
2629 .Op Fl t Ar target-pane
2630 .Op Ar shell-command
2632 .D1 Pq alias: Ic pipep
2633 Pipe output sent by the program in
2634 .Ar target-pane
2635 to a shell command or vice versa.
2636 A pane may only be connected to one command at a time, any existing pipe is
2637 closed before
2638 .Ar shell-command
2639 is executed.
2641 .Ar shell-command
2642 string may contain the special character sequences supported by the
2643 .Ic status-left
2644 option.
2645 If no
2646 .Ar shell-command
2647 is given, the current pipe (if any) is closed.
2649 .Fl I
2651 .Fl O
2652 specify which of the
2653 .Ar shell-command
2654 output streams are connected to the pane:
2655 with
2656 .Fl I
2657 stdout is connected (so anything
2658 .Ar shell-command
2659 prints is written to the pane as if it were typed);
2660 with
2661 .Fl O
2662 stdin is connected (so any output in the pane is piped to
2663 .Ar shell-command ) .
2664 Both may be used together and if neither are specified,
2665 .Fl O
2666 is used.
2669 .Fl o
2670 option only opens a new pipe if no previous pipe exists, allowing a pipe to
2671 be toggled with a single key, for example:
2672 .Bd -literal -offset indent
2673 bind-key C-p pipe-pane -o 'cat >>~/output.#I-#P'
2675 .Tg prevl
2676 .It Xo Ic previous-layout
2677 .Op Fl t Ar target-window
2679 .D1 Pq alias: Ic prevl
2680 Move to the previous layout in the session.
2681 .Tg prev
2682 .It Xo Ic previous-window
2683 .Op Fl a
2684 .Op Fl t Ar target-session
2686 .D1 Pq alias: Ic prev
2687 Move to the previous window in the session.
2688 With
2689 .Fl a ,
2690 move to the previous window with an alert.
2691 .Tg renamew
2692 .It Xo Ic rename-window
2693 .Op Fl t Ar target-window
2694 .Ar new-name
2696 .D1 Pq alias: Ic renamew
2697 Rename the current window, or the window at
2698 .Ar target-window
2699 if specified, to
2700 .Ar new-name .
2701 .Tg resizep
2702 .It Xo Ic resize-pane
2703 .Op Fl DLMRTUZ
2704 .Op Fl t Ar target-pane
2705 .Op Fl x Ar width
2706 .Op Fl y Ar height
2707 .Op Ar adjustment
2709 .D1 Pq alias: Ic resizep
2710 Resize a pane, up, down, left or right by
2711 .Ar adjustment
2712 with
2713 .Fl U ,
2714 .Fl D ,
2715 .Fl L
2717 .Fl R ,
2719 to an absolute size
2720 with
2721 .Fl x
2723 .Fl y .
2725 .Ar adjustment
2726 is given in lines or columns (the default is 1);
2727 .Fl x
2729 .Fl y
2730 may be a given as a number of lines or columns or followed by
2731 .Ql %
2732 for a percentage of the window size (for example
2733 .Ql -x 10% ) .
2734 With
2735 .Fl Z ,
2736 the active pane is toggled between zoomed (occupying the whole of the window)
2737 and unzoomed (its normal position in the layout).
2739 .Fl M
2740 begins mouse resizing (only valid if bound to a mouse key binding, see
2741 .Sx MOUSE SUPPORT ) .
2743 .Fl T
2744 trims all lines below the current cursor position and moves lines out of the
2745 history to replace them.
2746 .Tg resizew
2747 .It Xo Ic resize-window
2748 .Op Fl aADLRU
2749 .Op Fl t Ar target-window
2750 .Op Fl x Ar width
2751 .Op Fl y Ar height
2752 .Op Ar adjustment
2754 .D1 Pq alias: Ic resizew
2755 Resize a window, up, down, left or right by
2756 .Ar adjustment
2757 with
2758 .Fl U ,
2759 .Fl D ,
2760 .Fl L
2762 .Fl R ,
2764 to an absolute size
2765 with
2766 .Fl x
2768 .Fl y .
2770 .Ar adjustment
2771 is given in lines or cells (the default is 1).
2772 .Fl A
2773 sets the size of the largest session containing the window;
2774 .Fl a
2775 the size of the smallest.
2776 This command will automatically set
2777 .Ic window-size
2778 to manual in the window options.
2779 .Tg respawnp
2780 .It Xo Ic respawn-pane
2781 .Op Fl k
2782 .Op Fl c Ar start-directory
2783 .Op Fl e Ar environment
2784 .Op Fl t Ar target-pane
2785 .Op Ar shell-command
2787 .D1 Pq alias: Ic respawnp
2788 Reactivate a pane in which the command has exited (see the
2789 .Ic remain-on-exit
2790 window option).
2792 .Ar shell-command
2793 is not given, the command used when the pane was created or last respawned is
2794 executed.
2795 The pane must be already inactive, unless
2796 .Fl k
2797 is given, in which case any existing command is killed.
2798 .Fl c
2799 specifies a new working directory for the pane.
2801 .Fl e
2802 option has the same meaning as for the
2803 .Ic new-window
2804 command.
2805 .Tg respawnw
2806 .It Xo Ic respawn-window
2807 .Op Fl k
2808 .Op Fl c Ar start-directory
2809 .Op Fl e Ar environment
2810 .Op Fl t Ar target-window
2811 .Op Ar shell-command
2813 .D1 Pq alias: Ic respawnw
2814 Reactivate a window in which the command has exited (see the
2815 .Ic remain-on-exit
2816 window option).
2818 .Ar shell-command
2819 is not given, the command used when the window was created or last respawned is
2820 executed.
2821 The window must be already inactive, unless
2822 .Fl k
2823 is given, in which case any existing command is killed.
2824 .Fl c
2825 specifies a new working directory for the window.
2827 .Fl e
2828 option has the same meaning as for the
2829 .Ic new-window
2830 command.
2831 .Tg rotatew
2832 .It Xo Ic rotate-window
2833 .Op Fl DUZ
2834 .Op Fl t Ar target-window
2836 .D1 Pq alias: Ic rotatew
2837 Rotate the positions of the panes within a window, either upward (numerically
2838 lower) with
2839 .Fl U
2840 or downward (numerically higher).
2841 .Fl Z
2842 keeps the window zoomed if it was zoomed.
2843 .Tg selectl
2844 .It Xo Ic select-layout
2845 .Op Fl Enop
2846 .Op Fl t Ar target-pane
2847 .Op Ar layout-name
2849 .D1 Pq alias: Ic selectl
2850 Choose a specific layout for a window.
2852 .Ar layout-name
2853 is not given, the last preset layout used (if any) is reapplied.
2854 .Fl n
2856 .Fl p
2857 are equivalent to the
2858 .Ic next-layout
2860 .Ic previous-layout
2861 commands.
2862 .Fl o
2863 applies the last set layout if possible (undoes the most recent layout change).
2864 .Fl E
2865 spreads the current pane and any panes next to it out evenly.
2866 .Tg selectp
2867 .It Xo Ic select-pane
2868 .Op Fl DdeLlMmRUZ
2869 .Op Fl T Ar title
2870 .Op Fl t Ar target-pane
2872 .D1 Pq alias: Ic selectp
2873 Make pane
2874 .Ar target-pane
2875 the active pane in its window.
2876 If one of
2877 .Fl D ,
2878 .Fl L ,
2879 .Fl R ,
2881 .Fl U
2882 is used, respectively the pane below, to the left, to the right, or above the
2883 target pane is used.
2884 .Fl Z
2885 keeps the window zoomed if it was zoomed.
2886 .Fl l
2887 is the same as using the
2888 .Ic last-pane
2889 command.
2890 .Fl e
2891 enables or
2892 .Fl d
2893 disables input to the pane.
2894 .Fl T
2895 sets the pane title.
2897 .Fl m
2899 .Fl M
2900 are used to set and clear the
2901 .Em marked pane .
2902 There is one marked pane at a time, setting a new marked pane clears the last.
2903 The marked pane is the default target for
2904 .Fl s
2906 .Ic join-pane ,
2907 .Ic move-pane ,
2908 .Ic swap-pane
2910 .Ic swap-window .
2911 .Tg selectw
2912 .It Xo Ic select-window
2913 .Op Fl lnpT
2914 .Op Fl t Ar target-window
2916 .D1 Pq alias: Ic selectw
2917 Select the window at
2918 .Ar target-window .
2919 .Fl l ,
2920 .Fl n
2922 .Fl p
2923 are equivalent to the
2924 .Ic last-window ,
2925 .Ic next-window
2927 .Ic previous-window
2928 commands.
2930 .Fl T
2931 is given and the selected window is already the current window,
2932 the command behaves like
2933 .Ic last-window .
2934 .Tg splitw
2935 .It Xo Ic split-window
2936 .Op Fl bdfhIvPZ
2937 .Op Fl c Ar start-directory
2938 .Op Fl e Ar environment
2939 .Op Fl l Ar size
2940 .Op Fl t Ar target-pane
2941 .Op Ar shell-command
2942 .Op Fl F Ar format
2944 .D1 Pq alias: Ic splitw
2945 Create a new pane by splitting
2946 .Ar target-pane :
2947 .Fl h
2948 does a horizontal split and
2949 .Fl v
2950 a vertical split; if neither is specified,
2951 .Fl v
2952 is assumed.
2954 .Fl l
2955 option specifies the size of the new pane in lines (for vertical split) or in
2956 columns (for horizontal split);
2957 .Ar size
2958 may be followed by
2959 .Ql %
2960 to specify a percentage of the available space.
2962 .Fl b
2963 option causes the new pane to be created to the left of or above
2964 .Ar target-pane .
2966 .Fl f
2967 option creates a new pane spanning the full window height (with
2968 .Fl h )
2969 or full window width (with
2970 .Fl v ) ,
2971 instead of splitting the active pane.
2972 .Fl Z
2973 zooms if the window is not zoomed, or keeps it zoomed if already zoomed.
2975 An empty
2976 .Ar shell-command
2977 ('') will create a pane with no command running in it.
2978 Output can be sent to such a pane with the
2979 .Ic display-message
2980 command.
2982 .Fl I
2983 flag (if
2984 .Ar shell-command
2985 is not specified or empty)
2986 will create an empty pane and forward any output from stdin to it.
2987 For example:
2988 .Bd -literal -offset indent
2989 $ make 2>&1|tmux splitw -dI &
2992 All other options have the same meaning as for the
2993 .Ic new-window
2994 command.
2995 .Tg swapp
2996 .It Xo Ic swap-pane
2997 .Op Fl dDUZ
2998 .Op Fl s Ar src-pane
2999 .Op Fl t Ar dst-pane
3001 .D1 Pq alias: Ic swapp
3002 Swap two panes.
3004 .Fl U
3005 is used and no source pane is specified with
3006 .Fl s ,
3007 .Ar dst-pane
3008 is swapped with the previous pane (before it numerically);
3009 .Fl D
3010 swaps with the next pane (after it numerically).
3011 .Fl d
3012 instructs
3014 not to change the active pane and
3015 .Fl Z
3016 keeps the window zoomed if it was zoomed.
3019 .Fl s
3020 is omitted and a marked pane is present (see
3021 .Ic select-pane
3022 .Fl m ) ,
3023 the marked pane is used rather than the current pane.
3024 .Tg swapw
3025 .It Xo Ic swap-window
3026 .Op Fl d
3027 .Op Fl s Ar src-window
3028 .Op Fl t Ar dst-window
3030 .D1 Pq alias: Ic swapw
3031 This is similar to
3032 .Ic link-window ,
3033 except the source and destination windows are swapped.
3034 It is an error if no window exists at
3035 .Ar src-window .
3037 .Fl d
3038 is given, the new window does not become the current window.
3041 .Fl s
3042 is omitted and a marked pane is present (see
3043 .Ic select-pane
3044 .Fl m ) ,
3045 the window containing the marked pane is used rather than the current window.
3046 .Tg unlinkw
3047 .It Xo Ic unlink-window
3048 .Op Fl k
3049 .Op Fl t Ar target-window
3051 .D1 Pq alias: Ic unlinkw
3052 Unlink
3053 .Ar target-window .
3054 Unless
3055 .Fl k
3056 is given, a window may be unlinked only if it is linked to multiple sessions -
3057 windows may not be linked to no sessions;
3059 .Fl k
3060 is specified and the window is linked to only one session, it is unlinked and
3061 destroyed.
3063 .Sh KEY BINDINGS
3065 allows a command to be bound to most keys, with or without a prefix key.
3066 When specifying keys, most represent themselves (for example
3067 .Ql A
3069 .Ql Z ) .
3070 Ctrl keys may be prefixed with
3071 .Ql C-
3073 .Ql ^ ,
3074 Shift keys with
3075 .Ql S-
3076 and Alt (meta) with
3077 .Ql M- .
3078 In addition, the following special key names are accepted:
3079 .Em Up ,
3080 .Em Down ,
3081 .Em Left ,
3082 .Em Right ,
3083 .Em BSpace ,
3084 .Em BTab ,
3085 .Em DC
3086 (Delete),
3087 .Em End ,
3088 .Em Enter ,
3089 .Em Escape ,
3090 .Em F1
3092 .Em F12 ,
3093 .Em Home ,
3094 .Em IC
3095 (Insert),
3096 .Em NPage/PageDown/PgDn ,
3097 .Em PPage/PageUp/PgUp ,
3098 .Em Space ,
3100 .Em Tab .
3101 Note that to bind the
3102 .Ql \&"
3104 .Ql '
3105 keys, quotation marks are necessary, for example:
3106 .Bd -literal -offset indent
3107 bind-key '"' split-window
3108 bind-key "'" new-window
3111 A command bound to the
3112 .Em Any
3113 key will execute for all keys which do not have a more specific binding.
3115 Commands related to key bindings are as follows:
3116 .Bl -tag -width Ds
3117 .Tg bind
3118 .It Xo Ic bind-key
3119 .Op Fl nr
3120 .Op Fl N Ar note
3121 .Op Fl T Ar key-table
3122 .Ar key command Op Ar argument ...
3124 .D1 Pq alias: Ic bind
3125 Bind key
3126 .Ar key
3128 .Ar command .
3129 Keys are bound in a key table.
3130 By default (without -T), the key is bound in
3132 .Em prefix
3133 key table.
3134 This table is used for keys pressed after the prefix key (for example,
3135 by default
3136 .Ql c
3137 is bound to
3138 .Ic new-window
3139 in the
3140 .Em prefix
3141 table, so
3142 .Ql C-b c
3143 creates a new window).
3145 .Em root
3146 table is used for keys pressed without the prefix key: binding
3147 .Ql c
3149 .Ic new-window
3150 in the
3151 .Em root
3152 table (not recommended) means a plain
3153 .Ql c
3154 will create a new window.
3155 .Fl n
3156 is an alias
3158 .Fl T Ar root .
3159 Keys may also be bound in custom key tables and the
3160 .Ic switch-client
3161 .Fl T
3162 command used to switch to them from a key binding.
3164 .Fl r
3165 flag indicates this key may repeat, see the
3166 .Ic repeat-time
3167 option.
3168 .Fl N
3169 attaches a note to the key (shown with
3170 .Ic list-keys
3171 .Fl N ) .
3173 To view the default bindings and possible commands, see the
3174 .Ic list-keys
3175 command.
3176 .Tg lsk
3177 .It Xo Ic list-keys
3178 .Op Fl 1aN
3179 .Op Fl P Ar prefix-string Fl T Ar key-table
3180 .Op Ar key
3182 .D1 Pq alias: Ic lsk
3183 List key bindings.
3184 There are two forms: the default lists keys as
3185 .Ic bind-key
3186 commands;
3187 .Fl N
3188 lists only keys with attached notes and shows only the key and note for each
3189 key.
3191 With the default form, all key tables are listed by default.
3192 .Fl T
3193 lists only keys in
3194 .Ar key-table .
3196 With the
3197 .Fl N
3198 form, only keys in the
3199 .Em root
3201 .Em prefix
3202 key tables are listed by default;
3203 .Fl T
3204 also lists only keys in
3205 .Ar key-table .
3206 .Fl P
3207 specifies a prefix to print before each key and
3208 .Fl 1
3209 lists only the first matching key.
3210 .Fl a
3211 lists the command for keys that do not have a note rather than skipping them.
3212 .Tg send
3213 .It Xo Ic send-keys
3214 .Op Fl FHKlMRX
3215 .Op Fl c Ar target-client
3216 .Op Fl N Ar repeat-count
3217 .Op Fl t Ar target-pane
3218 .Ar key ...
3220 .D1 Pq alias: Ic send
3221 Send a key or keys to a window or client.
3222 Each argument
3223 .Ar key
3224 is the name of the key (such as
3225 .Ql C-a
3227 .Ql NPage )
3228 to send; if the string is not recognised as a key, it is sent as a series of
3229 characters.
3231 .Fl K
3232 is given, keys are sent to
3233 .Ar target-client ,
3234 so they are looked up in the client's key table, rather than to
3235 .Ar target-pane .
3236 All arguments are sent sequentially from first to last.
3237 If no keys are given and the command is bound to a key, then that key is used.
3240 .Fl l
3241 flag disables key name lookup and processes the keys as literal UTF-8
3242 characters.
3244 .Fl H
3245 flag expects each key to be a hexadecimal number for an ASCII character.
3248 .Fl R
3249 flag causes the terminal state to be reset.
3251 .Fl M
3252 passes through a mouse event (only valid if bound to a mouse key binding, see
3253 .Sx MOUSE SUPPORT ) .
3255 .Fl X
3256 is used to send a command into copy mode - see
3258 .Sx WINDOWS AND PANES
3259 section.
3260 .Fl N
3261 specifies a repeat count and
3262 .Fl F
3263 expands formats in arguments where appropriate.
3264 .It Xo Ic send-prefix
3265 .Op Fl 2
3266 .Op Fl t Ar target-pane
3268 Send the prefix key, or with
3269 .Fl 2
3270 the secondary prefix key, to a window as if it was pressed.
3271 .Tg unbind
3272 .It Xo Ic unbind-key
3273 .Op Fl anq
3274 .Op Fl T Ar key-table
3275 .Ar key
3277 .D1 Pq alias: Ic unbind
3278 Unbind the command bound to
3279 .Ar key .
3280 .Fl n
3282 .Fl T
3283 are the same as for
3284 .Ic bind-key .
3286 .Fl a
3287 is present, all key bindings are removed.
3289 .Fl q
3290 option prevents errors being returned.
3292 .Sh OPTIONS
3293 The appearance and behaviour of
3295 may be modified by changing the value of various options.
3296 There are four types of option:
3297 .Em server options ,
3298 .Em session options ,
3299 .Em window options ,
3301 .Em pane options .
3305 server has a set of global server options which do not apply to any particular
3306 window or session or pane.
3307 These are altered with the
3308 .Ic set-option
3309 .Fl s
3310 command, or displayed with the
3311 .Ic show-options
3312 .Fl s
3313 command.
3315 In addition, each individual session may have a set of session options, and
3316 there is a separate set of global session options.
3317 Sessions which do not have a particular option configured inherit the value
3318 from the global session options.
3319 Session options are set or unset with the
3320 .Ic set-option
3321 command and may be listed with the
3322 .Ic show-options
3323 command.
3324 The available server and session options are listed under the
3325 .Ic set-option
3326 command.
3328 Similarly, a set of window options is attached to each window and a set of pane
3329 options to each pane.
3330 Pane options inherit from window options.
3331 This means any pane option may be set as a window option to apply the option to
3332 all panes in the window without the option set, for example these commands will
3333 set the background colour to red for all panes except pane 0:
3334 .Bd -literal -offset indent
3335 set -w window-style bg=red
3336 set -pt:.0 window-style bg=blue
3339 There is also a set of global window options from which any unset window or
3340 pane options are inherited.
3341 Window and pane options are altered with
3342 .Ic set-option
3343 .Fl w
3345 .Fl p
3346 commands and displayed with
3347 .Ic show-option
3348 .Fl w
3350 .Fl p .
3353 also supports user options which are prefixed with a
3354 .Ql \&@ .
3355 User options may have any name, so long as they are prefixed with
3356 .Ql \&@ ,
3357 and be set to any string.
3358 For example:
3359 .Bd -literal -offset indent
3360 $ tmux set -wq @foo "abc123"
3361 $ tmux show -wv @foo
3362 abc123
3365 Commands which set options are as follows:
3366 .Bl -tag -width Ds
3367 .Tg set
3368 .It Xo Ic set-option
3369 .Op Fl aFgopqsuUw
3370 .Op Fl t Ar target-pane
3371 .Ar option Ar value
3373 .D1 Pq alias: Ic set
3374 Set a pane option with
3375 .Fl p ,
3376 a window option with
3377 .Fl w ,
3378 a server option with
3379 .Fl s ,
3380 otherwise a session option.
3381 If the option is not a user option,
3382 .Fl w
3384 .Fl s
3385 may be unnecessary -
3387 will infer the type from the option name, assuming
3388 .Fl w
3389 for pane options.
3391 .Fl g
3392 is given, the global session or window option is set.
3394 .Fl F
3395 expands formats in the option value.
3397 .Fl u
3398 flag unsets an option, so a session inherits the option from the global
3399 options (or with
3400 .Fl g ,
3401 restores a global option to the default).
3402 .Fl U
3403 unsets an option (like
3404 .Fl u )
3405 but if the option is a pane option also unsets the option on any panes in the
3406 window.
3407 .Ar value
3408 depends on the option and may be a number, a string, or a flag (on, off, or
3409 omitted to toggle).
3412 .Fl o
3413 flag prevents setting an option that is already set and the
3414 .Fl q
3415 flag suppresses errors about unknown or ambiguous options.
3417 With
3418 .Fl a ,
3419 and if the option expects a string or a style,
3420 .Ar value
3421 is appended to the existing setting.
3422 For example:
3423 .Bd -literal -offset indent
3424 set -g status-left "foo"
3425 set -ag status-left "bar"
3428 Will result in
3429 .Ql foobar .
3430 And:
3431 .Bd -literal -offset indent
3432 set -g status-style "bg=red"
3433 set -ag status-style "fg=blue"
3436 Will result in a red background
3437 .Em and
3438 blue foreground.
3439 Without
3440 .Fl a ,
3441 the result would be the default background and a blue foreground.
3442 .Tg show
3443 .It Xo Ic show-options
3444 .Op Fl AgHpqsvw
3445 .Op Fl t Ar target-pane
3446 .Op Ar option
3448 .D1 Pq alias: Ic show
3449 Show the pane options (or a single option if
3450 .Ar option
3451 is provided) with
3452 .Fl p ,
3453 the window options with
3454 .Fl w ,
3455 the server options with
3456 .Fl s ,
3457 otherwise the session options.
3458 If the option is not a user option,
3459 .Fl w
3461 .Fl s
3462 may be unnecessary -
3464 will infer the type from the option name, assuming
3465 .Fl w
3466 for pane options.
3467 Global session or window options are listed if
3468 .Fl g
3469 is used.
3470 .Fl v
3471 shows only the option value, not the name.
3473 .Fl q
3474 is set, no error will be returned if
3475 .Ar option
3476 is unset.
3477 .Fl H
3478 includes hooks (omitted by default).
3479 .Fl A
3480 includes options inherited from a parent set of options, such options are
3481 marked with an asterisk.
3484 Available server options are:
3485 .Bl -tag -width Ds
3486 .It Ic backspace Ar key
3487 Set the key sent by
3489 for backspace.
3490 .It Ic buffer-limit Ar number
3491 Set the number of buffers; as new buffers are added to the top of the stack,
3492 old ones are removed from the bottom if necessary to maintain this maximum
3493 length.
3494 .It Xo Ic command-alias[]
3495 .Ar name=value
3497 This is an array of custom aliases for commands.
3498 If an unknown command matches
3499 .Ar name ,
3500 it is replaced with
3501 .Ar value .
3502 For example, after:
3504 .Dl set -s command-alias[100] zoom='resize-pane -Z'
3506 Using:
3508 .Dl zoom -t:.1
3510 Is equivalent to:
3512 .Dl resize-pane -Z -t:.1
3514 Note that aliases are expanded when a command is parsed rather than when it is
3515 executed, so binding an alias with
3516 .Ic bind-key
3517 will bind the expanded form.
3518 .It Ic default-terminal Ar terminal
3519 Set the default terminal for new windows created in this session - the
3520 default value of the
3521 .Ev TERM
3522 environment variable.
3525 to work correctly, this
3526 .Em must
3527 be set to
3528 .Ql screen ,
3529 .Ql tmux
3530 or a derivative of them.
3531 .It Ic copy-command Ar shell-command
3532 Give the command to pipe to if the
3533 .Ic copy-pipe
3534 copy mode command is used without arguments.
3535 .It Ic escape-time Ar time
3536 Set the time in milliseconds for which
3538 waits after an escape is input to determine if it is part of a function or meta
3539 key sequences.
3540 The default is 500 milliseconds.
3541 .It Ic editor Ar shell-command
3542 Set the command used when
3544 runs an editor.
3545 .It Xo Ic exit-empty
3546 .Op Ic on | off
3548 If enabled (the default), the server will exit when there are no active
3549 sessions.
3550 .It Xo Ic exit-unattached
3551 .Op Ic on | off
3553 If enabled, the server will exit when there are no attached clients.
3554 .It Xo Ic extended-keys
3555 .Op Ic on | off | always
3557 When
3558 .Ic on
3560 .Ic always ,
3561 the escape sequence to enable extended keys is sent to the terminal, if
3563 knows that it is supported.
3565 always recognises extended keys itself.
3566 If this option is
3567 .Ic on ,
3569 will only forward extended keys to applications when they request them; if
3570 .Ic always ,
3572 will always forward the keys.
3573 .It Xo Ic focus-events
3574 .Op Ic on | off
3576 When enabled, focus events are requested from the terminal if supported and
3577 passed through to applications running in
3578 .Nm .
3579 Attached clients should be detached and attached again after changing this
3580 option.
3581 .It Ic history-file Ar path
3582 If not empty, a file to which
3584 will write command prompt history on exit and load it from on start.
3585 .It Ic message-limit Ar number
3586 Set the number of error or information messages to save in the message log for
3587 each client.
3588 .It Ic prompt-history-limit Ar number
3589 Set the number of history items to save in the history file for each type of
3590 command prompt.
3591 .It Xo Ic set-clipboard
3592 .Op Ic on | external | off
3594 Attempt to set the terminal clipboard content using the
3595 .Xr xterm 1
3596 escape sequence, if there is an
3597 .Em \&Ms
3598 entry in the
3599 .Xr terminfo 5
3600 description (see the
3601 .Sx TERMINFO EXTENSIONS
3602 section).
3604 If set to
3605 .Ic on ,
3607 will both accept the escape sequence to create a buffer and attempt to set
3608 the terminal clipboard.
3609 If set to
3610 .Ic external ,
3612 will attempt to set the terminal clipboard but ignore attempts
3613 by applications to set
3615 buffers.
3617 .Ic off ,
3619 will neither accept the clipboard escape sequence nor attempt to set the
3620 clipboard.
3622 Note that this feature needs to be enabled in
3623 .Xr xterm 1
3624 by setting the resource:
3625 .Bd -literal -offset indent
3626 disallowedWindowOps: 20,21,SetXprop
3629 Or changing this property from the
3630 .Xr xterm 1
3631 interactive menu when required.
3632 .It Ic terminal-features[] Ar string
3633 Set terminal features for terminal types read from
3634 .Xr terminfo 5 .
3636 has a set of named terminal features.
3637 Each will apply appropriate changes to the
3638 .Xr terminfo 5
3639 entry in use.
3642 can detect features for a few common terminals; this option can be used to
3643 easily tell tmux about features supported by terminals it cannot detect.
3645 .Ic terminal-overrides
3646 option allows individual
3647 .Xr terminfo 5
3648 capabilities to be set instead,
3649 .Ic terminal-features
3650 is intended for classes of functionality supported in a standard way but not
3651 reported by
3652 .Xr terminfo 5 .
3653 Care must be taken to configure this only with features the terminal actually
3654 supports.
3656 This is an array option where each entry is a colon-separated string made up
3657 of a terminal type pattern (matched using
3658 .Xr fnmatch 3 )
3659 followed by a list of terminal features.
3660 The available features are:
3661 .Bl -tag -width Ds
3662 .It 256
3663 Supports 256 colours with the SGR escape sequences.
3664 .It clipboard
3665 Allows setting the system clipboard.
3666 .It ccolour
3667 Allows setting the cursor colour.
3668 .It cstyle
3669 Allows setting the cursor style.
3670 .It extkeys
3671 Supports extended keys.
3672 .It focus
3673 Supports focus reporting.
3674 .It hyperlinks
3675 Supports OSC 8 hyperlinks.
3676 .It ignorefkeys
3677 Ignore function keys from
3678 .Xr terminfo 5
3679 and use the
3681 internal set only.
3682 .It margins
3683 Supports DECSLRM margins.
3684 .It mouse
3685 Supports
3686 .Xr xterm 1
3687 mouse sequences.
3688 .It osc7
3689 Supports the OSC 7 working directory extension.
3690 .It overline
3691 Supports the overline SGR attribute.
3692 .It rectfill
3693 Supports the DECFRA rectangle fill escape sequence.
3694 .It RGB
3695 Supports RGB colour with the SGR escape sequences.
3696 .It sixel
3697 Supports SIXEL graphics.
3698 .It strikethrough
3699 Supports the strikethrough SGR escape sequence.
3700 .It sync
3701 Supports synchronized updates.
3702 .It title
3703 Supports
3704 .Xr xterm 1
3705 title setting.
3706 .It usstyle
3707 Allows underscore style and colour to be set.
3709 .It Ic terminal-overrides[] Ar string
3710 Allow terminal descriptions read using
3711 .Xr terminfo 5
3712 to be overridden.
3713 Each entry is a colon-separated string made up of a terminal type pattern
3714 (matched using
3715 .Xr fnmatch 3 )
3716 and a set of
3717 .Em name=value
3718 entries.
3720 For example, to set the
3721 .Ql clear
3722 .Xr terminfo 5
3723 entry to
3724 .Ql \ee[H\ee[2J
3725 for all terminal types matching
3726 .Ql rxvt* :
3728 .Dl "rxvt*:clear=\ee[H\ee[2J"
3730 The terminal entry value is passed through
3731 .Xr strunvis 3
3732 before interpretation.
3733 .It Ic user-keys[] Ar key
3734 Set list of user-defined key escape sequences.
3735 Each item is associated with a key named
3736 .Ql User0 ,
3737 .Ql User1 ,
3738 and so on.
3740 For example:
3741 .Bd -literal -offset indent
3742 set -s user-keys[0] "\ee[5;30012~"
3743 bind User0 resize-pane -L 3
3747 Available session options are:
3748 .Bl -tag -width Ds
3749 .It Xo Ic activity-action
3750 .Op Ic any | none | current | other
3752 Set action on window activity when
3753 .Ic monitor-activity
3754 is on.
3755 .Ic any
3756 means activity in any window linked to a session causes a bell or message
3757 (depending on
3758 .Ic visual-activity )
3759 in the current window of that session,
3760 .Ic none
3761 means all activity is ignored (equivalent to
3762 .Ic monitor-activity
3763 being off),
3764 .Ic current
3765 means only activity in windows other than the current window are ignored and
3766 .Ic other
3767 means activity in the current window is ignored but not those in other windows.
3768 .It Ic assume-paste-time Ar milliseconds
3769 If keys are entered faster than one in
3770 .Ar milliseconds ,
3771 they are assumed to have been pasted rather than typed and
3773 key bindings are not processed.
3774 The default is one millisecond and zero disables.
3775 .It Ic base-index Ar index
3776 Set the base index from which an unused index should be searched when a new
3777 window is created.
3778 The default is zero.
3779 .It Xo Ic bell-action
3780 .Op Ic any | none | current | other
3782 Set action on a bell in a window when
3783 .Ic monitor-bell
3784 is on.
3785 The values are the same as those for
3786 .Ic activity-action .
3787 .It Ic default-command Ar shell-command
3788 Set the command used for new windows (if not specified when the window is
3789 created) to
3790 .Ar shell-command ,
3791 which may be any
3792 .Xr sh 1
3793 command.
3794 The default is an empty string, which instructs
3796 to create a login shell using the value of the
3797 .Ic default-shell
3798 option.
3799 .It Ic default-shell Ar path
3800 Specify the default shell.
3801 This is used as the login shell for new windows when the
3802 .Ic default-command
3803 option is set to empty, and must be the full path of the executable.
3804 When started
3806 tries to set a default value from the first suitable of the
3807 .Ev SHELL
3808 environment variable, the shell returned by
3809 .Xr getpwuid 3 ,
3811 .Pa /bin/sh .
3812 This option should be configured when
3814 is used as a login shell.
3815 .It Ic default-size Ar XxY
3816 Set the default size of new windows when the
3817 .Ic window-size
3818 option is set to manual or when a session is created with
3819 .Ic new-session
3820 .Fl d .
3821 The value is the width and height separated by an
3822 .Ql x
3823 character.
3824 The default is 80x24.
3825 .It Xo Ic destroy-unattached
3826 .Op Ic on | off
3828 If enabled and the session is no longer attached to any clients, it is
3829 destroyed.
3830 .It Xo Ic detach-on-destroy
3831 .Op Ic off | on | no-detached
3833 If on (the default), the client is detached when the session it is attached to
3834 is destroyed.
3835 If off, the client is switched to the most recently active of the remaining
3836 sessions.
3838 .Ic no-detached ,
3839 the client is detached only if there are no detached sessions; if detached
3840 sessions exist, the client is switched to the most recently active.
3841 .It Ic display-panes-active-colour Ar colour
3842 Set the colour used by the
3843 .Ic display-panes
3844 command to show the indicator for the active pane.
3845 .It Ic display-panes-colour Ar colour
3846 Set the colour used by the
3847 .Ic display-panes
3848 command to show the indicators for inactive panes.
3849 .It Ic display-panes-time Ar time
3850 Set the time in milliseconds for which the indicators shown by the
3851 .Ic display-panes
3852 command appear.
3853 .It Ic display-time Ar time
3854 Set the amount of time for which status line messages and other on-screen
3855 indicators are displayed.
3856 If set to 0, messages and indicators are displayed until a key is pressed.
3857 .Ar time
3858 is in milliseconds.
3859 .It Ic history-limit Ar lines
3860 Set the maximum number of lines held in window history.
3861 This setting applies only to new windows - existing window histories are not
3862 resized and retain the limit at the point they were created.
3863 .It Ic key-table Ar key-table
3864 Set the default key table to
3865 .Ar key-table
3866 instead of
3867 .Em root .
3868 .It Ic lock-after-time Ar number
3869 Lock the session (like the
3870 .Ic lock-session
3871 command) after
3872 .Ar number
3873 seconds of inactivity.
3874 The default is not to lock (set to 0).
3875 .It Ic lock-command Ar shell-command
3876 Command to run when locking each client.
3877 The default is to run
3878 .Xr lock 1
3879 with
3880 .Fl np .
3881 .It Ic message-command-style Ar style
3882 Set status line message command style.
3883 This is used for the command prompt with
3884 .Xr vi 1
3885 keys when in command mode.
3886 For how to specify
3887 .Ar style ,
3888 see the
3889 .Sx STYLES
3890 section.
3891 .It Xo Ic message-line
3892 .Op Ic 0 | 1 | 2 | 3 | 4
3894 Set line on which status line messages and the command prompt are shown.
3895 .It Ic message-style Ar style
3896 Set status line message style.
3897 This is used for messages and for the command prompt.
3898 For how to specify
3899 .Ar style ,
3900 see the
3901 .Sx STYLES
3902 section.
3903 .It Xo Ic mouse
3904 .Op Ic on | off
3906 If on,
3908 captures the mouse and allows mouse events to be bound as key bindings.
3909 See the
3910 .Sx MOUSE SUPPORT
3911 section for details.
3912 .It Ic prefix Ar key
3913 Set the key accepted as a prefix key.
3914 In addition to the standard keys described under
3915 .Sx KEY BINDINGS ,
3916 .Ic prefix
3917 can be set to the special key
3918 .Ql None
3919 to set no prefix.
3920 .It Ic prefix2 Ar key
3921 Set a secondary key accepted as a prefix key.
3922 Like
3923 .Ic prefix ,
3924 .Ic prefix2
3925 can be set to
3926 .Ql None .
3927 .It Xo Ic renumber-windows
3928 .Op Ic on | off
3930 If on, when a window is closed in a session, automatically renumber the other
3931 windows in numerical order.
3932 This respects the
3933 .Ic base-index
3934 option if it has been set.
3935 If off, do not renumber the windows.
3936 .It Ic repeat-time Ar time
3937 Allow multiple commands to be entered without pressing the prefix-key again
3938 in the specified
3939 .Ar time
3940 milliseconds (the default is 500).
3941 Whether a key repeats may be set when it is bound using the
3942 .Fl r
3943 flag to
3944 .Ic bind-key .
3945 Repeat is enabled for the default keys bound to the
3946 .Ic resize-pane
3947 command.
3948 .It Xo Ic set-titles
3949 .Op Ic on | off
3951 Attempt to set the client terminal title using the
3952 .Em tsl
3954 .Em fsl
3955 .Xr terminfo 5
3956 entries if they exist.
3958 automatically sets these to the \ee]0;...\e007 sequence if
3959 the terminal appears to be
3960 .Xr xterm 1 .
3961 This option is off by default.
3962 .It Ic set-titles-string Ar string
3963 String used to set the client terminal title if
3964 .Ic set-titles
3965 is on.
3966 Formats are expanded, see the
3967 .Sx FORMATS
3968 section.
3969 .It Xo Ic silence-action
3970 .Op Ic any | none | current | other
3972 Set action on window silence when
3973 .Ic monitor-silence
3974 is on.
3975 The values are the same as those for
3976 .Ic activity-action .
3977 .It Xo Ic status
3978 .Op Ic off | on | 2 | 3 | 4 | 5
3980 Show or hide the status line or specify its size.
3981 Using
3982 .Ic on
3983 gives a status line one row in height;
3984 .Ic 2 ,
3985 .Ic 3 ,
3986 .Ic 4
3988 .Ic 5
3989 more rows.
3990 .It Ic status-format[] Ar format
3991 Specify the format to be used for each line of the status line.
3992 The default builds the top status line from the various individual status
3993 options below.
3994 .It Ic status-interval Ar interval
3995 Update the status line every
3996 .Ar interval
3997 seconds.
3998 By default, updates will occur every 15 seconds.
3999 A setting of zero disables redrawing at interval.
4000 .It Xo Ic status-justify
4001 .Op Ic left | centre | right | absolute-centre
4003 Set the position of the window list in the status line: left, centre or right.
4004 centre puts the window list in the relative centre of the available free space;
4005 absolute-centre uses the centre of the entire horizontal space.
4006 .It Xo Ic status-keys
4007 .Op Ic vi | emacs
4009 Use vi or emacs-style
4010 key bindings in the status line, for example at the command prompt.
4011 The default is emacs, unless the
4012 .Ev VISUAL
4014 .Ev EDITOR
4015 environment variables are set and contain the string
4016 .Ql vi .
4017 .It Ic status-left Ar string
4018 Display
4019 .Ar string
4020 (by default the session name) to the left of the status line.
4021 .Ar string
4022 will be passed through
4023 .Xr strftime 3 .
4024 Also see the
4025 .Sx FORMATS
4027 .Sx STYLES
4028 sections.
4030 For details on how the names and titles can be set see the
4031 .Sx "NAMES AND TITLES"
4032 section.
4034 Examples are:
4035 .Bd -literal -offset indent
4036 #(sysctl vm.loadavg)
4037 #[fg=yellow,bold]#(apm -l)%%#[default] [#S]
4040 The default is
4041 .Ql "[#S] " .
4042 .It Ic status-left-length Ar length
4043 Set the maximum
4044 .Ar length
4045 of the left component of the status line.
4046 The default is 10.
4047 .It Ic status-left-style Ar style
4048 Set the style of the left part of the status line.
4049 For how to specify
4050 .Ar style ,
4051 see the
4052 .Sx STYLES
4053 section.
4054 .It Xo Ic status-position
4055 .Op Ic top | bottom
4057 Set the position of the status line.
4058 .It Ic status-right Ar string
4059 Display
4060 .Ar string
4061 to the right of the status line.
4062 By default, the current pane title in double quotes, the date and the time
4063 are shown.
4064 As with
4065 .Ic status-left ,
4066 .Ar string
4067 will be passed to
4068 .Xr strftime 3
4069 and character pairs are replaced.
4070 .It Ic status-right-length Ar length
4071 Set the maximum
4072 .Ar length
4073 of the right component of the status line.
4074 The default is 40.
4075 .It Ic status-right-style Ar style
4076 Set the style of the right part of the status line.
4077 For how to specify
4078 .Ar style ,
4079 see the
4080 .Sx STYLES
4081 section.
4082 .It Ic status-style Ar style
4083 Set status line style.
4084 For how to specify
4085 .Ar style ,
4086 see the
4087 .Sx STYLES
4088 section.
4089 .It Ic update-environment[] Ar variable
4090 Set list of environment variables to be copied into the session environment
4091 when a new session is created or an existing session is attached.
4092 Any variables that do not exist in the source environment are set to be
4093 removed from the session environment (as if
4094 .Fl r
4095 was given to the
4096 .Ic set-environment
4097 command).
4098 .It Xo Ic visual-activity
4099 .Op Ic on | off | both
4101 If on, display a message instead of sending a bell when activity occurs in a
4102 window for which the
4103 .Ic monitor-activity
4104 window option is enabled.
4105 If set to both, a bell and a message are produced.
4106 .It Xo Ic visual-bell
4107 .Op Ic on | off | both
4109 If on, a message is shown on a bell in a window for which the
4110 .Ic monitor-bell
4111 window option is enabled instead of it being passed through to the
4112 terminal (which normally makes a sound).
4113 If set to both, a bell and a message are produced.
4114 Also see the
4115 .Ic bell-action
4116 option.
4117 .It Xo Ic visual-silence
4118 .Op Ic on | off | both
4121 .Ic monitor-silence
4122 is enabled, prints a message after the interval has expired on a given window
4123 instead of sending a bell.
4124 If set to both, a bell and a message are produced.
4125 .It Ic word-separators Ar string
4126 Sets the session's conception of what characters are considered word
4127 separators, for the purposes of the next and previous word commands in
4128 copy mode.
4131 Available window options are:
4133 .Bl -tag -width Ds -compact
4134 .It Xo Ic aggressive-resize
4135 .Op Ic on | off
4137 Aggressively resize the chosen window.
4138 This means that
4140 will resize the window to the size of the smallest or largest session
4141 (see the
4142 .Ic window-size
4143 option) for which it is the current window, rather than the session to
4144 which it is attached.
4145 The window may resize when the current window is changed on another
4146 session; this option is good for full-screen programs which support
4147 .Dv SIGWINCH
4148 and poor for interactive programs such as shells.
4150 .It Xo Ic automatic-rename
4151 .Op Ic on | off
4153 Control automatic window renaming.
4154 When this setting is enabled,
4156 will rename the window automatically using the format specified by
4157 .Ic automatic-rename-format .
4158 This flag is automatically disabled for an individual window when a name
4159 is specified at creation with
4160 .Ic new-window
4162 .Ic new-session ,
4163 or later with
4164 .Ic rename-window ,
4165 or with a terminal escape sequence.
4166 It may be switched off globally with:
4167 .Bd -literal -offset indent
4168 set-option -wg automatic-rename off
4171 .It Ic automatic-rename-format Ar format
4172 The format (see
4173 .Sx FORMATS )
4174 used when the
4175 .Ic automatic-rename
4176 option is enabled.
4178 .It Ic clock-mode-colour Ar colour
4179 Set clock colour.
4181 .It Xo Ic clock-mode-style
4182 .Op Ic 12 | 24
4184 Set clock hour format.
4186 .It Ic fill-character Ar character
4187 Set the character used to fill areas of the terminal unused by a window.
4189 .It Ic main-pane-height Ar height
4190 .It Ic main-pane-width Ar width
4191 Set the width or height of the main (left or top) pane in the
4192 .Ic main-horizontal
4194 .Ic main-vertical
4195 layouts.
4196 If suffixed by
4197 .Ql % ,
4198 this is a percentage of the window size.
4200 .It Ic copy-mode-match-style Ar style
4201 Set the style of search matches in copy mode.
4202 For how to specify
4203 .Ar style ,
4204 see the
4205 .Sx STYLES
4206 section.
4208 .It Ic copy-mode-mark-style Ar style
4209 Set the style of the line containing the mark in copy mode.
4210 For how to specify
4211 .Ar style ,
4212 see the
4213 .Sx STYLES
4214 section.
4216 .It Ic copy-mode-current-match-style Ar style
4217 Set the style of the current search match in copy mode.
4218 For how to specify
4219 .Ar style ,
4220 see the
4221 .Sx STYLES
4222 section.
4224 .It Xo Ic mode-keys
4225 .Op Ic vi | emacs
4227 Use vi or emacs-style key bindings in copy mode.
4228 The default is emacs, unless
4229 .Ev VISUAL
4231 .Ev EDITOR
4232 contains
4233 .Ql vi .
4235 .It Ic mode-style Ar style
4236 Set window modes style.
4237 For how to specify
4238 .Ar style ,
4239 see the
4240 .Sx STYLES
4241 section.
4243 .It Xo Ic monitor-activity
4244 .Op Ic on | off
4246 Monitor for activity in the window.
4247 Windows with activity are highlighted in the status line.
4249 .It Xo Ic monitor-bell
4250 .Op Ic on | off
4252 Monitor for a bell in the window.
4253 Windows with a bell are highlighted in the status line.
4255 .It Xo Ic monitor-silence
4256 .Op Ic interval
4258 Monitor for silence (no activity) in the window within
4259 .Ic interval
4260 seconds.
4261 Windows that have been silent for the interval are highlighted in the
4262 status line.
4263 An interval of zero disables the monitoring.
4265 .It Ic other-pane-height Ar height
4266 Set the height of the other panes (not the main pane) in the
4267 .Ic main-horizontal
4268 layout.
4269 If this option is set to 0 (the default), it will have no effect.
4270 If both the
4271 .Ic main-pane-height
4273 .Ic other-pane-height
4274 options are set, the main pane will grow taller to make the other panes the
4275 specified height, but will never shrink to do so.
4276 If suffixed by
4277 .Ql % ,
4278 this is a percentage of the window size.
4280 .It Ic other-pane-width Ar width
4281 Like
4282 .Ic other-pane-height ,
4283 but set the width of other panes in the
4284 .Ic main-vertical
4285 layout.
4287 .It Ic pane-active-border-style Ar style
4288 Set the pane border style for the currently active pane.
4289 For how to specify
4290 .Ar style ,
4291 see the
4292 .Sx STYLES
4293 section.
4294 Attributes are ignored.
4296 .It Ic pane-base-index Ar index
4297 Like
4298 .Ic base-index ,
4299 but set the starting index for pane numbers.
4301 .It Ic pane-border-format Ar format
4302 Set the text shown in pane border status lines.
4304 .It Xo Ic pane-border-indicators
4305 .Op Ic off | colour | arrows | both
4307 Indicate active pane by colouring only half of the border in windows with
4308 exactly two panes, by displaying arrow markers, by drawing both or neither.
4310 .It Ic pane-border-lines Ar type
4311 Set the type of characters used for drawing pane borders.
4312 .Ar type
4313 may be one of:
4314 .Bl -tag -width Ds
4315 .It single
4316 single lines using ACS or UTF-8 characters
4317 .It double
4318 double lines using UTF-8 characters
4319 .It heavy
4320 heavy lines using UTF-8 characters
4321 .It simple
4322 simple ASCII characters
4323 .It number
4324 the pane number
4327 .Ql double
4329 .Ql heavy
4330 will fall back to standard ACS line drawing when UTF-8 is not supported.
4332 .It Xo Ic pane-border-status
4333 .Op Ic off | top | bottom
4335 Turn pane border status lines off or set their position.
4337 .It Ic pane-border-style Ar style
4338 Set the pane border style for panes aside from the active pane.
4339 For how to specify
4340 .Ar style ,
4341 see the
4342 .Sx STYLES
4343 section.
4344 Attributes are ignored.
4346 .It Ic popup-style Ar style
4347 Set the popup style.
4348 For how to specify
4349 .Ar style ,
4350 see the
4351 .Sx STYLES
4352 section.
4353 Attributes are ignored.
4355 .It Ic popup-border-style Ar style
4356 Set the popup border style.
4357 For how to specify
4358 .Ar style ,
4359 see the
4360 .Sx STYLES
4361 section.
4362 Attributes are ignored.
4364 .It Ic popup-border-lines Ar type
4365 Set the type of characters used for drawing popup borders.
4366 .Ar type
4367 may be one of:
4368 .Bl -tag -width Ds
4369 .It single
4370 single lines using ACS or UTF-8 characters (default)
4371 .It rounded
4372 variation of single with rounded corners using UTF-8 characters
4373 .It double
4374 double lines using UTF-8 characters
4375 .It heavy
4376 heavy lines using UTF-8 characters
4377 .It simple
4378 simple ASCII characters
4379 .It padded
4380 simple ASCII space character
4381 .It none
4382 no border
4385 .Ql double
4387 .Ql heavy
4388 will fall back to standard ACS line drawing when UTF-8 is not supported.
4390 .It Ic window-status-activity-style Ar style
4391 Set status line style for windows with an activity alert.
4392 For how to specify
4393 .Ar style ,
4394 see the
4395 .Sx STYLES
4396 section.
4398 .It Ic window-status-bell-style Ar style
4399 Set status line style for windows with a bell alert.
4400 For how to specify
4401 .Ar style ,
4402 see the
4403 .Sx STYLES
4404 section.
4406 .It Ic window-status-current-format Ar string
4407 Like
4408 .Ar window-status-format ,
4409 but is the format used when the window is the current window.
4411 .It Ic window-status-current-style Ar style
4412 Set status line style for the currently active window.
4413 For how to specify
4414 .Ar style ,
4415 see the
4416 .Sx STYLES
4417 section.
4419 .It Ic window-status-format Ar string
4420 Set the format in which the window is displayed in the status line window list.
4421 See the
4422 .Sx FORMATS
4424 .Sx STYLES
4425 sections.
4427 .It Ic window-status-last-style Ar style
4428 Set status line style for the last active window.
4429 For how to specify
4430 .Ar style ,
4431 see the
4432 .Sx STYLES
4433 section.
4435 .It Ic window-status-separator Ar string
4436 Sets the separator drawn between windows in the status line.
4437 The default is a single space character.
4439 .It Ic window-status-style Ar style
4440 Set status line style for a single window.
4441 For how to specify
4442 .Ar style ,
4443 see the
4444 .Sx STYLES
4445 section.
4447 .It Xo Ic window-size
4448 .Ar largest | Ar smallest | Ar manual | Ar latest
4450 Configure how
4452 determines the window size.
4453 If set to
4454 .Ar largest ,
4455 the size of the largest attached session is used; if
4456 .Ar smallest ,
4457 the size of the smallest.
4459 .Ar manual ,
4460 the size of a new window is set from the
4461 .Ic default-size
4462 option and windows are resized automatically.
4463 With
4464 .Ar latest ,
4466 uses the size of the client that had the most recent activity.
4467 See also the
4468 .Ic resize-window
4469 command and the
4470 .Ic aggressive-resize
4471 option.
4473 .It Xo Ic wrap-search
4474 .Op Ic on | off
4476 If this option is set, searches will wrap around the end of the pane contents.
4477 The default is on.
4480 Available pane options are:
4482 .Bl -tag -width Ds -compact
4483 .It Xo Ic allow-passthrough
4484 .Op Ic on | off | all
4486 Allow programs in the pane to bypass
4488 using a terminal escape sequence (\eePtmux;...\ee\e\e).
4489 If set to
4490 .Ic on ,
4491 passthrough sequences will be allowed only if the pane is visible.
4492 If set to
4493 .Ic all ,
4494 they will be allowed even if the pane is invisible.
4496 .It Xo Ic allow-rename
4497 .Op Ic on | off
4499 Allow programs in the pane to change the window name using a terminal escape
4500 sequence (\eek...\ee\e\e).
4502 .It Xo Ic alternate-screen
4503 .Op Ic on | off
4505 This option configures whether programs running inside the pane may use the
4506 terminal alternate screen feature, which allows the
4507 .Em smcup
4509 .Em rmcup
4510 .Xr terminfo 5
4511 capabilities.
4512 The alternate screen feature preserves the contents of the window when an
4513 interactive application starts and restores it on exit, so that any output
4514 visible before the application starts reappears unchanged after it exits.
4516 .It Ic cursor-colour Ar colour
4517 Set the colour of the cursor.
4519 .It Ic pane-colours[] Ar colour
4520 The default colour palette.
4521 Each entry in the array defines the colour
4523 uses when the colour with that index is requested.
4524 The index may be from zero to 255.
4526 .It Ic cursor-style Ar style
4527 Set the style of the cursor.
4528 Available styles are:
4529 .Ic default ,
4530 .Ic blinking-block ,
4531 .Ic block ,
4532 .Ic blinking-underline ,
4533 .Ic underline ,
4534 .Ic blinking-bar ,
4535 .Ic bar .
4537 .It Xo Ic remain-on-exit
4538 .Op Ic on | off | failed
4540 A pane with this flag set is not destroyed when the program running in it
4541 exits.
4542 If set to
4543 .Ic failed ,
4544 then only when the program exit status is not zero.
4545 The pane may be reactivated with the
4546 .Ic respawn-pane
4547 command.
4549 .It Ic remain-on-exit-format Ar string
4550 Set the text shown at the bottom of exited panes when
4551 .Ic remain-on-exit
4552 is enabled.
4554 .It Xo Ic scroll-on-clear
4555 .Op Ic on | off
4557 When the entire screen is cleared and this option is on, scroll the contents of
4558 the screen into history before clearing it.
4560 .It Xo Ic synchronize-panes
4561 .Op Ic on | off
4563 Duplicate input to all other panes in the same window where this option is also
4564 on (only for panes that are not in any mode).
4566 .It Ic window-active-style Ar style
4567 Set the pane style when it is the active pane.
4568 For how to specify
4569 .Ar style ,
4570 see the
4571 .Sx STYLES
4572 section.
4574 .It Ic window-style Ar style
4575 Set the pane style.
4576 For how to specify
4577 .Ar style ,
4578 see the
4579 .Sx STYLES
4580 section.
4582 .Sh HOOKS
4584 allows commands to run on various triggers, called
4585 .Em hooks .
4586 Most
4588 commands have an
4589 .Em after
4590 hook and there are a number of hooks not associated with commands.
4592 Hooks are stored as array options, members of the array are executed in
4593 order when the hook is triggered.
4594 Like options different hooks may be global or belong to a session, window or pane.
4595 Hooks may be configured with the
4596 .Ic set-hook
4598 .Ic set-option
4599 commands and displayed with
4600 .Ic show-hooks
4602 .Ic show-options
4603 .Fl H .
4604 The following two commands are equivalent:
4605 .Bd -literal -offset indent.
4606 set-hook -g pane-mode-changed[42] 'set -g status-left-style bg=red'
4607 set-option -g pane-mode-changed[42] 'set -g status-left-style bg=red'
4610 Setting a hook without specifying an array index clears the hook and sets the
4611 first member of the array.
4613 A command's after
4614 hook is run after it completes, except when the command is run as part of a hook
4615 itself.
4616 They are named with an
4617 .Ql after-
4618 prefix.
4619 For example, the following command adds a hook to select the even-vertical
4620 layout after every
4621 .Ic split-window :
4622 .Bd -literal -offset indent
4623 set-hook -g after-split-window "selectl even-vertical"
4626 All the notifications listed in the
4627 .Sx CONTROL MODE
4628 section are hooks (without any arguments), except
4629 .Ic %exit .
4630 The following additional hooks are available:
4631 .Bl -tag -width "XXXXXXXXXXXXXXXXXXXXXX"
4632 .It alert-activity
4633 Run when a window has activity.
4635 .Ic monitor-activity .
4636 .It alert-bell
4637 Run when a window has received a bell.
4639 .Ic monitor-bell .
4640 .It alert-silence
4641 Run when a window has been silent.
4643 .Ic monitor-silence .
4644 .It client-active
4645 Run when a client becomes the latest active client of its session.
4646 .It client-attached
4647 Run when a client is attached.
4648 .It client-detached
4649 Run when a client is detached
4650 .It client-focus-in
4651 Run when focus enters a client
4652 .It client-focus-out
4653 Run when focus exits a client
4654 .It client-resized
4655 Run when a client is resized.
4656 .It client-session-changed
4657 Run when a client's attached session is changed.
4658 .It pane-died
4659 Run when the program running in a pane exits, but
4660 .Ic remain-on-exit
4661 is on so the pane has not closed.
4662 .It pane-exited
4663 Run when the program running in a pane exits.
4664 .It pane-focus-in
4665 Run when the focus enters a pane, if the
4666 .Ic focus-events
4667 option is on.
4668 .It pane-focus-out
4669 Run when the focus exits a pane, if the
4670 .Ic focus-events
4671 option is on.
4672 .It pane-set-clipboard
4673 Run when the terminal clipboard is set using the
4674 .Xr xterm 1
4675 escape sequence.
4676 .It session-created
4677 Run when a new session created.
4678 .It session-closed
4679 Run when a session closed.
4680 .It session-renamed
4681 Run when a session is renamed.
4682 .It window-linked
4683 Run when a window is linked into a session.
4684 .It window-renamed
4685 Run when a window is renamed.
4686 .It window-resized
4687 Run when a window is resized.
4688 This may be after the
4689 .Ar client-resized
4690 hook is run.
4691 .It window-unlinked
4692 Run when a window is unlinked from a session.
4695 Hooks are managed with these commands:
4696 .Bl -tag -width Ds
4697 .It Xo Ic set-hook
4698 .Op Fl agpRuw
4699 .Op Fl t Ar target-pane
4700 .Ar hook-name
4701 .Ar command
4703 Without
4704 .Fl R ,
4705 sets (or with
4706 .Fl u
4707 unsets) hook
4708 .Ar hook-name
4710 .Ar command .
4711 The flags are the same as for
4712 .Ic set-option .
4714 With
4715 .Fl R ,
4717 .Ar hook-name
4718 immediately.
4719 .It Xo Ic show-hooks
4720 .Op Fl gpw
4721 .Op Fl t Ar target-pane
4723 Shows hooks.
4724 The flags are the same as for
4725 .Ic show-options .
4727 .Sh MOUSE SUPPORT
4728 If the
4729 .Ic mouse
4730 option is on (the default is off),
4732 allows mouse events to be bound as keys.
4733 The name of each key is made up of a mouse event (such as
4734 .Ql MouseUp1 )
4735 and a location suffix, one of the following:
4736 .Bl -column "XXXXXXXXXXXXX" -offset indent
4737 .It Li "Pane" Ta "the contents of a pane"
4738 .It Li "Border" Ta "a pane border"
4739 .It Li "Status" Ta "the status line window list"
4740 .It Li "StatusLeft" Ta "the left part of the status line"
4741 .It Li "StatusRight" Ta "the right part of the status line"
4742 .It Li "StatusDefault" Ta "any other part of the status line"
4745 The following mouse events are available:
4746 .Bl -column "MouseDown1" "MouseDrag1" "WheelDown" -offset indent
4747 .It Li "WheelUp" Ta "WheelDown" Ta ""
4748 .It Li "MouseDown1" Ta "MouseUp1" Ta "MouseDrag1" Ta "MouseDragEnd1"
4749 .It Li "MouseDown2" Ta "MouseUp2" Ta "MouseDrag2" Ta "MouseDragEnd2"
4750 .It Li "MouseDown3" Ta "MouseUp3" Ta "MouseDrag3" Ta "MouseDragEnd3"
4751 .It Li "SecondClick1" Ta "SecondClick2" Ta "SecondClick3"
4752 .It Li "DoubleClick1" Ta "DoubleClick2" Ta "DoubleClick3"
4753 .It Li "TripleClick1" Ta "TripleClick2" Ta "TripleClick3"
4757 .Ql SecondClick
4758 events are fired for the second click of a double click, even if there may be a
4759 third click which will fire
4760 .Ql TripleClick
4761 instead of
4762 .Ql DoubleClick .
4764 Each should be suffixed with a location, for example
4765 .Ql MouseDown1Status .
4767 The special token
4768 .Ql {mouse}
4770 .Ql =
4771 may be used as
4772 .Ar target-window
4774 .Ar target-pane
4775 in commands bound to mouse key bindings.
4776 It resolves to the window or pane over which the mouse event took place
4777 (for example, the window in the status line over which button 1 was released for a
4778 .Ql MouseUp1Status
4779 binding, or the pane over which the wheel was scrolled for a
4780 .Ql WheelDownPane
4781 binding).
4784 .Ic send-keys
4785 .Fl M
4786 flag may be used to forward a mouse event to a pane.
4788 The default key bindings allow the mouse to be used to select and resize panes,
4789 to copy text and to change window using the status line.
4790 These take effect if the
4791 .Ic mouse
4792 option is turned on.
4793 .Sh FORMATS
4794 Certain commands accept the
4795 .Fl F
4796 flag with a
4797 .Ar format
4798 argument.
4799 This is a string which controls the output format of the command.
4800 Format variables are enclosed in
4801 .Ql #{
4803 .Ql } ,
4804 for example
4805 .Ql #{session_name} .
4806 The possible variables are listed in the table below, or the name of a
4808 option may be used for an option's value.
4809 Some variables have a shorter alias such as
4810 .Ql #S ;
4811 .Ql ##
4812 is replaced by a single
4813 .Ql # ,
4814 .Ql #,
4815 by a
4816 .Ql \&,
4818 .Ql #}
4819 by a
4820 .Ql } .
4822 Conditionals are available by prefixing with
4823 .Ql \&?
4824 and separating two alternatives with a comma;
4825 if the specified variable exists and is not zero, the first alternative
4826 is chosen, otherwise the second is used.
4827 For example
4828 .Ql #{?session_attached,attached,not attached}
4829 will include the string
4830 .Ql attached
4831 if the session is attached and the string
4832 .Ql not attached
4833 if it is unattached, or
4834 .Ql #{?automatic-rename,yes,no}
4835 will include
4836 .Ql yes
4838 .Ic automatic-rename
4839 is enabled, or
4840 .Ql no
4841 if not.
4842 Conditionals can be nested arbitrarily.
4843 Inside a conditional,
4844 .Ql \&,
4846 .Ql }
4847 must be escaped as
4848 .Ql #,
4850 .Ql #} ,
4851 unless they are part of a
4852 .Ql #{...}
4853 replacement.
4854 For example:
4855 .Bd -literal -offset indent
4856 #{?pane_in_mode,#[fg=white#,bg=red],#[fg=red#,bg=white]}#W .
4859 String comparisons may be expressed by prefixing two comma-separated
4860 alternatives by
4861 .Ql == ,
4862 .Ql != ,
4863 .Ql < ,
4864 .Ql > ,
4865 .Ql <=
4867 .Ql >=
4868 and a colon.
4869 For example
4870 .Ql #{==:#{host},myhost}
4871 will be replaced by
4872 .Ql 1
4873 if running on
4874 .Ql myhost ,
4875 otherwise by
4876 .Ql 0 .
4877 .Ql ||
4879 .Ql &&
4880 evaluate to true if either or both of two comma-separated alternatives are
4881 true, for example
4882 .Ql #{||:#{pane_in_mode},#{alternate_on}} .
4885 .Ql m
4886 specifies an
4887 .Xr fnmatch 3
4888 or regular expression comparison.
4889 The first argument is the pattern and the second the string to compare.
4890 An optional argument specifies flags:
4891 .Ql r
4892 means the pattern is a regular expression instead of the default
4893 .Xr fnmatch 3
4894 pattern, and
4895 .Ql i
4896 means to ignore case.
4897 For example:
4898 .Ql #{m:*foo*,#{host}}
4900 .Ql #{m/ri:^A,MYVAR} .
4902 .Ql C
4903 performs a search for an
4904 .Xr fnmatch 3
4905 pattern or regular expression in the pane content and evaluates to zero if not
4906 found, or a line number if found.
4907 Like
4908 .Ql m ,
4910 .Ql r
4911 flag means search for a regular expression and
4912 .Ql i
4913 ignores case.
4914 For example:
4915 .Ql #{C/r:^Start}
4917 Numeric operators may be performed by prefixing two comma-separated alternatives with an
4918 .Ql e
4919 and an operator.
4920 An optional
4921 .Ql f
4922 flag may be given after the operator to use floating point numbers, otherwise integers are used.
4923 This may be followed by a number giving the number of decimal places to use for the result.
4924 The available operators are:
4925 addition
4926 .Ql + ,
4927 subtraction
4928 .Ql - ,
4929 multiplication
4930 .Ql * ,
4931 division
4932 .Ql / ,
4933 modulus
4934 .Ql m
4936 .Ql %
4937 (note that
4938 .Ql %
4939 must be escaped as
4940 .Ql %%
4941 in formats which are also expanded by
4942 .Xr strftime 3 )
4943 and numeric comparison operators
4944 .Ql == ,
4945 .Ql != ,
4946 .Ql < ,
4947 .Ql <= ,
4948 .Ql >
4950 .Ql >= .
4951 For example,
4952 .Ql #{e|*|f|4:5.5,3}
4953 multiplies 5.5 by 3 for a result with four decimal places and
4954 .Ql #{e|%%:7,3}
4955 returns the modulus of 7 and 3.
4956 .Ql a
4957 replaces a numeric argument by its ASCII equivalent, so
4958 .Ql #{a:98}
4959 results in
4960 .Ql b .
4961 .Ql c
4962 replaces a
4964 colour by its six-digit hexadecimal RGB value.
4966 A limit may be placed on the length of the resultant string by prefixing it
4967 by an
4968 .Ql = ,
4969 a number and a colon.
4970 Positive numbers count from the start of the string and negative from the end,
4972 .Ql #{=5:pane_title}
4973 will include at most the first five characters of the pane title, or
4974 .Ql #{=-5:pane_title}
4975 the last five characters.
4976 A suffix or prefix may be given as a second argument - if provided then it is
4977 appended or prepended to the string if the length has been trimmed, for example
4978 .Ql #{=/5/...:pane_title}
4979 will append
4980 .Ql ...
4981 if the pane title is more than five characters.
4982 Similarly,
4983 .Ql p
4984 pads the string to a given width, for example
4985 .Ql #{p10:pane_title}
4986 will result in a width of at least 10 characters.
4987 A positive width pads on the left, a negative on the right.
4988 .Ql n
4989 expands to the length of the variable and
4990 .Ql w
4991 to its width when displayed, for example
4992 .Ql #{n:window_name} .
4994 Prefixing a time variable with
4995 .Ql t:\&
4996 will convert it to a string, so if
4997 .Ql #{window_activity}
4998 gives
4999 .Ql 1445765102 ,
5000 .Ql #{t:window_activity}
5001 gives
5002 .Ql Sun Oct 25 09:25:02 2015 .
5003 Adding
5004 .Ql p (
5005 .Ql `t/p` )
5006 will use shorter but less accurate time format for times in the past.
5007 A custom format may be given using an
5008 .Ql f
5009 suffix (note that
5010 .Ql %
5011 must be escaped as
5012 .Ql %%
5013 if the format is separately being passed through
5014 .Xr strftime 3 ,
5015 for example in the
5016 .Ic status-left
5017 option):
5018 .Ql #{t/f/%%H#:%%M:window_activity} ,
5020 .Xr strftime 3 .
5023 .Ql b:\&
5025 .Ql d:\&
5026 prefixes are
5027 .Xr basename 3
5029 .Xr dirname 3
5030 of the variable respectively.
5031 .Ql q:\&
5032 will escape
5033 .Xr sh 1
5034 special characters or with a
5035 .Ql h
5036 suffix, escape hash characters (so
5037 .Ql #
5038 becomes
5039 .Ql ## ) .
5040 .Ql E:\&
5041 will expand the format twice, for example
5042 .Ql #{E:status-left}
5043 is the result of expanding the content of the
5044 .Ic status-left
5045 option rather than the option itself.
5046 .Ql T:\&
5047 is like
5048 .Ql E:\&
5049 but also expands
5050 .Xr strftime 3
5051 specifiers.
5052 .Ql S:\& ,
5053 .Ql W:\&
5055 .Ql P:\&
5056 will loop over each session, window or pane and insert the format once
5057 for each.
5058 For windows and panes, two comma-separated formats may be given:
5059 the second is used for the current window or active pane.
5060 For example, to get a list of windows formatted like the status line:
5061 .Bd -literal -offset indent
5062 #{W:#{E:window-status-format} ,#{E:window-status-current-format} }
5065 .Ql N:\&
5066 checks if a window (without any suffix or with the
5067 .Ql w
5068 suffix) or a session (with the
5069 .Ql s
5070 suffix) name exists, for example
5071 .Ql `N/w:foo`
5072 is replaced with 1 if a window named
5073 .Ql foo
5074 exists.
5076 A prefix of the form
5077 .Ql s/foo/bar/:\&
5078 will substitute
5079 .Ql foo
5080 with
5081 .Ql bar
5082 throughout.
5083 The first argument may be an extended regular expression and a final argument may be
5084 .Ql i
5085 to ignore case, for example
5086 .Ql s/a(.)/\e1x/i:\&
5087 would change
5088 .Ql abABab
5089 into
5090 .Ql bxBxbx .
5091 A different delimiter character may also be used, to avoid collisions with
5092 literal slashes in the pattern.
5093 For example,
5094 .Ql s|foo/|bar/|:
5095 will substitute
5096 .Ql foo/
5097 with
5098 .Ql bar/
5099 throughout.
5101 In addition, the last line of a shell command's output may be inserted using
5102 .Ql #() .
5103 For example,
5104 .Ql #(uptime)
5105 will insert the system's uptime.
5106 When constructing formats,
5108 does not wait for
5109 .Ql #()
5110 commands to finish; instead, the previous result from running the same command is used,
5111 or a placeholder if the command has not been run before.
5112 If the command hasn't exited, the most recent line of output will be used, but the status
5113 line will not be updated more than once a second.
5114 Commands are executed using
5115 .Pa /bin/sh
5116 and with the
5118 global environment set (see the
5119 .Sx GLOBAL AND SESSION ENVIRONMENT
5120 section).
5123 .Ql l
5124 specifies that a string should be interpreted literally and not expanded.
5125 For example
5126 .Ql #{l:#{?pane_in_mode,yes,no}}
5127 will be replaced by
5128 .Ql #{?pane_in_mode,yes,no} .
5130 The following variables are available, where appropriate:
5131 .Bl -column "XXXXXXXXXXXXXXXXXXX" "XXXXX"
5132 .It Sy "Variable name" Ta Sy "Alias" Ta Sy "Replaced with"
5133 .It Li "active_window_index" Ta "" Ta "Index of active window in session"
5134 .It Li "alternate_on" Ta "" Ta "1 if pane is in alternate screen"
5135 .It Li "alternate_saved_x" Ta "" Ta "Saved cursor X in alternate screen"
5136 .It Li "alternate_saved_y" Ta "" Ta "Saved cursor Y in alternate screen"
5137 .It Li "buffer_created" Ta "" Ta "Time buffer created"
5138 .It Li "buffer_name" Ta "" Ta "Name of buffer"
5139 .It Li "buffer_sample" Ta "" Ta "Sample of start of buffer"
5140 .It Li "buffer_size" Ta "" Ta "Size of the specified buffer in bytes"
5141 .It Li "client_activity" Ta "" Ta "Time client last had activity"
5142 .It Li "client_cell_height" Ta "" Ta "Height of each client cell in pixels"
5143 .It Li "client_cell_width" Ta "" Ta "Width of each client cell in pixels"
5144 .It Li "client_control_mode" Ta "" Ta "1 if client is in control mode"
5145 .It Li "client_created" Ta "" Ta "Time client created"
5146 .It Li "client_discarded" Ta "" Ta "Bytes discarded when client behind"
5147 .It Li "client_flags" Ta "" Ta "List of client flags"
5148 .It Li "client_height" Ta "" Ta "Height of client"
5149 .It Li "client_key_table" Ta "" Ta "Current key table"
5150 .It Li "client_last_session" Ta "" Ta "Name of the client's last session"
5151 .It Li "client_name" Ta "" Ta "Name of client"
5152 .It Li "client_pid" Ta "" Ta "PID of client process"
5153 .It Li "client_prefix" Ta "" Ta "1 if prefix key has been pressed"
5154 .It Li "client_readonly" Ta "" Ta "1 if client is read-only"
5155 .It Li "client_session" Ta "" Ta "Name of the client's session"
5156 .It Li "client_termfeatures" Ta "" Ta "Terminal features of client, if any"
5157 .It Li "client_termname" Ta "" Ta "Terminal name of client"
5158 .It Li "client_termtype" Ta "" Ta "Terminal type of client, if available"
5159 .It Li "client_tty" Ta "" Ta "Pseudo terminal of client"
5160 .It Li "client_uid" Ta "" Ta "UID of client process"
5161 .It Li "client_user" Ta "" Ta "User of client process"
5162 .It Li "client_utf8" Ta "" Ta "1 if client supports UTF-8"
5163 .It Li "client_width" Ta "" Ta "Width of client"
5164 .It Li "client_written" Ta "" Ta "Bytes written to client"
5165 .It Li "command" Ta "" Ta "Name of command in use, if any"
5166 .It Li "command_list_alias" Ta "" Ta "Command alias if listing commands"
5167 .It Li "command_list_name" Ta "" Ta "Command name if listing commands"
5168 .It Li "command_list_usage" Ta "" Ta "Command usage if listing commands"
5169 .It Li "config_files" Ta "" Ta "List of configuration files loaded"
5170 .It Li "copy_cursor_line" Ta "" Ta "Line the cursor is on in copy mode"
5171 .It Li "copy_cursor_word" Ta "" Ta "Word under cursor in copy mode"
5172 .It Li "copy_cursor_x" Ta "" Ta "Cursor X position in copy mode"
5173 .It Li "copy_cursor_y" Ta "" Ta "Cursor Y position in copy mode"
5174 .It Li "current_file" Ta "" Ta "Current configuration file"
5175 .It Li "cursor_character" Ta "" Ta "Character at cursor in pane"
5176 .It Li "cursor_flag" Ta "" Ta "Pane cursor flag"
5177 .It Li "cursor_x" Ta "" Ta "Cursor X position in pane"
5178 .It Li "cursor_y" Ta "" Ta "Cursor Y position in pane"
5179 .It Li "history_bytes" Ta "" Ta "Number of bytes in window history"
5180 .It Li "history_limit" Ta "" Ta "Maximum window history lines"
5181 .It Li "history_size" Ta "" Ta "Size of history in lines"
5182 .It Li "hook" Ta "" Ta "Name of running hook, if any"
5183 .It Li "hook_client" Ta "" Ta "Name of client where hook was run, if any"
5184 .It Li "hook_pane" Ta "" Ta "ID of pane where hook was run, if any"
5185 .It Li "hook_session" Ta "" Ta "ID of session where hook was run, if any"
5186 .It Li "hook_session_name" Ta "" Ta "Name of session where hook was run, if any"
5187 .It Li "hook_window" Ta "" Ta "ID of window where hook was run, if any"
5188 .It Li "hook_window_name" Ta "" Ta "Name of window where hook was run, if any"
5189 .It Li "host" Ta "#H" Ta "Hostname of local host"
5190 .It Li "host_short" Ta "#h" Ta "Hostname of local host (no domain name)"
5191 .It Li "insert_flag" Ta "" Ta "Pane insert flag"
5192 .It Li "keypad_cursor_flag" Ta "" Ta "Pane keypad cursor flag"
5193 .It Li "keypad_flag" Ta "" Ta "Pane keypad flag"
5194 .It Li "last_window_index" Ta "" Ta "Index of last window in session"
5195 .It Li "line" Ta "" Ta "Line number in the list"
5196 .It Li "mouse_all_flag" Ta "" Ta "Pane mouse all flag"
5197 .It Li "mouse_any_flag" Ta "" Ta "Pane mouse any flag"
5198 .It Li "mouse_button_flag" Ta "" Ta "Pane mouse button flag"
5199 .It Li "mouse_hyperlink" Ta "" Ta "Hyperlink under mouse, if any"
5200 .It Li "mouse_line" Ta "" Ta "Line under mouse, if any"
5201 .It Li "mouse_sgr_flag" Ta "" Ta "Pane mouse SGR flag"
5202 .It Li "mouse_standard_flag" Ta "" Ta "Pane mouse standard flag"
5203 .It Li "mouse_utf8_flag" Ta "" Ta "Pane mouse UTF-8 flag"
5204 .It Li "mouse_word" Ta "" Ta "Word under mouse, if any"
5205 .It Li "mouse_x" Ta "" Ta "Mouse X position, if any"
5206 .It Li "mouse_y" Ta "" Ta "Mouse Y position, if any"
5207 .It Li "next_session_id" Ta "" Ta "Unique session ID for next new session"
5208 .It Li "origin_flag" Ta "" Ta "Pane origin flag"
5209 .It Li "pane_active" Ta "" Ta "1 if active pane"
5210 .It Li "pane_at_bottom" Ta "" Ta "1 if pane is at the bottom of window"
5211 .It Li "pane_at_left" Ta "" Ta "1 if pane is at the left of window"
5212 .It Li "pane_at_right" Ta "" Ta "1 if pane is at the right of window"
5213 .It Li "pane_at_top" Ta "" Ta "1 if pane is at the top of window"
5214 .It Li "pane_bg" Ta "" Ta "Pane background colour"
5215 .It Li "pane_bottom" Ta "" Ta "Bottom of pane"
5216 .It Li "pane_current_command" Ta "" Ta "Current command if available"
5217 .It Li "pane_current_path" Ta "" Ta "Current path if available"
5218 .It Li "pane_dead" Ta "" Ta "1 if pane is dead"
5219 .It Li "pane_dead_signal" Ta "" Ta "Exit signal of process in dead pane"
5220 .It Li "pane_dead_status" Ta "" Ta "Exit status of process in dead pane"
5221 .It Li "pane_dead_time" Ta "" Ta "Exit time of process in dead pane"
5222 .It Li "pane_fg" Ta "" Ta "Pane foreground colour"
5223 .It Li "pane_format" Ta "" Ta "1 if format is for a pane"
5224 .It Li "pane_height" Ta "" Ta "Height of pane"
5225 .It Li "pane_id" Ta "#D" Ta "Unique pane ID"
5226 .It Li "pane_in_mode" Ta "" Ta "1 if pane is in a mode"
5227 .It Li "pane_index" Ta "#P" Ta "Index of pane"
5228 .It Li "pane_input_off" Ta "" Ta "1 if input to pane is disabled"
5229 .It Li "pane_last" Ta "" Ta "1 if last pane"
5230 .It Li "pane_left" Ta "" Ta "Left of pane"
5231 .It Li "pane_marked" Ta "" Ta "1 if this is the marked pane"
5232 .It Li "pane_marked_set" Ta "" Ta "1 if a marked pane is set"
5233 .It Li "pane_mode" Ta "" Ta "Name of pane mode, if any"
5234 .It Li "pane_path" Ta "" Ta "Path of pane (can be set by application)"
5235 .It Li "pane_pid" Ta "" Ta "PID of first process in pane"
5236 .It Li "pane_pipe" Ta "" Ta "1 if pane is being piped"
5237 .It Li "pane_right" Ta "" Ta "Right of pane"
5238 .It Li "pane_search_string" Ta "" Ta "Last search string in copy mode"
5239 .It Li "pane_start_command" Ta "" Ta "Command pane started with"
5240 .It Li "pane_start_path" Ta "" Ta "Path pane started with"
5241 .It Li "pane_synchronized" Ta "" Ta "1 if pane is synchronized"
5242 .It Li "pane_tabs" Ta "" Ta "Pane tab positions"
5243 .It Li "pane_title" Ta "#T" Ta "Title of pane (can be set by application)"
5244 .It Li "pane_top" Ta "" Ta "Top of pane"
5245 .It Li "pane_tty" Ta "" Ta "Pseudo terminal of pane"
5246 .It Li "pane_width" Ta "" Ta "Width of pane"
5247 .It Li "pid" Ta "" Ta "Server PID"
5248 .It Li "rectangle_toggle" Ta "" Ta "1 if rectangle selection is activated"
5249 .It Li "scroll_position" Ta "" Ta "Scroll position in copy mode"
5250 .It Li "scroll_region_lower" Ta "" Ta "Bottom of scroll region in pane"
5251 .It Li "scroll_region_upper" Ta "" Ta "Top of scroll region in pane"
5252 .It Li "search_match" Ta "" Ta "Search match if any"
5253 .It Li "search_present" Ta "" Ta "1 if search started in copy mode"
5254 .It Li "selection_active" Ta "" Ta "1 if selection started and changes with the cursor in copy mode"
5255 .It Li "selection_end_x" Ta "" Ta "X position of the end of the selection"
5256 .It Li "selection_end_y" Ta "" Ta "Y position of the end of the selection"
5257 .It Li "selection_present" Ta "" Ta "1 if selection started in copy mode"
5258 .It Li "selection_start_x" Ta "" Ta "X position of the start of the selection"
5259 .It Li "selection_start_y" Ta "" Ta "Y position of the start of the selection"
5260 .It Li "session_activity" Ta "" Ta "Time of session last activity"
5261 .It Li "session_alerts" Ta "" Ta "List of window indexes with alerts"
5262 .It Li "session_attached" Ta "" Ta "Number of clients session is attached to"
5263 .It Li "session_attached_list" Ta "" Ta "List of clients session is attached to"
5264 .It Li "session_created" Ta "" Ta "Time session created"
5265 .It Li "session_format" Ta "" Ta "1 if format is for a session"
5266 .It Li "session_group" Ta "" Ta "Name of session group"
5267 .It Li "session_group_attached" Ta "" Ta "Number of clients sessions in group are attached to"
5268 .It Li "session_group_attached_list" Ta "" Ta "List of clients sessions in group are attached to"
5269 .It Li "session_group_list" Ta "" Ta "List of sessions in group"
5270 .It Li "session_group_many_attached" Ta "" Ta "1 if multiple clients attached to sessions in group"
5271 .It Li "session_group_size" Ta "" Ta "Size of session group"
5272 .It Li "session_grouped" Ta "" Ta "1 if session in a group"
5273 .It Li "session_id" Ta "" Ta "Unique session ID"
5274 .It Li "session_last_attached" Ta "" Ta "Time session last attached"
5275 .It Li "session_many_attached" Ta "" Ta "1 if multiple clients attached"
5276 .It Li "session_marked" Ta "" Ta "1 if this session contains the marked pane"
5277 .It Li "session_name" Ta "#S" Ta "Name of session"
5278 .It Li "session_path" Ta "" Ta "Working directory of session"
5279 .It Li "session_stack" Ta "" Ta "Window indexes in most recent order"
5280 .It Li "session_windows" Ta "" Ta "Number of windows in session"
5281 .It Li "socket_path" Ta "" Ta "Server socket path"
5282 .It Li "start_time" Ta "" Ta "Server start time"
5283 .It Li "uid" Ta "" Ta "Server UID"
5284 .It Li "user" Ta "" Ta "Server user"
5285 .It Li "version" Ta "" Ta "Server version"
5286 .It Li "window_active" Ta "" Ta "1 if window active"
5287 .It Li "window_active_clients" Ta "" Ta "Number of clients viewing this window"
5288 .It Li "window_active_clients_list" Ta "" Ta "List of clients viewing this window"
5289 .It Li "window_active_sessions" Ta "" Ta "Number of sessions on which this window is active"
5290 .It Li "window_active_sessions_list" Ta "" Ta "List of sessions on which this window is active"
5291 .It Li "window_activity" Ta "" Ta "Time of window last activity"
5292 .It Li "window_activity_flag" Ta "" Ta "1 if window has activity"
5293 .It Li "window_bell_flag" Ta "" Ta "1 if window has bell"
5294 .It Li "window_bigger" Ta "" Ta "1 if window is larger than client"
5295 .It Li "window_cell_height" Ta "" Ta "Height of each cell in pixels"
5296 .It Li "window_cell_width" Ta "" Ta "Width of each cell in pixels"
5297 .It Li "window_end_flag" Ta "" Ta "1 if window has the highest index"
5298 .It Li "window_flags" Ta "#F" Ta "Window flags with # escaped as ##"
5299 .It Li "window_format" Ta "" Ta "1 if format is for a window"
5300 .It Li "window_height" Ta "" Ta "Height of window"
5301 .It Li "window_id" Ta "" Ta "Unique window ID"
5302 .It Li "window_index" Ta "#I" Ta "Index of window"
5303 .It Li "window_last_flag" Ta "" Ta "1 if window is the last used"
5304 .It Li "window_layout" Ta "" Ta "Window layout description, ignoring zoomed window panes"
5305 .It Li "window_linked" Ta "" Ta "1 if window is linked across sessions"
5306 .It Li "window_linked_sessions" Ta "" Ta "Number of sessions this window is linked to"
5307 .It Li "window_linked_sessions_list" Ta "" Ta "List of sessions this window is linked to"
5308 .It Li "window_marked_flag" Ta "" Ta "1 if window contains the marked pane"
5309 .It Li "window_name" Ta "#W" Ta "Name of window"
5310 .It Li "window_offset_x" Ta "" Ta "X offset into window if larger than client"
5311 .It Li "window_offset_y" Ta "" Ta "Y offset into window if larger than client"
5312 .It Li "window_panes" Ta "" Ta "Number of panes in window"
5313 .It Li "window_raw_flags" Ta "" Ta "Window flags with nothing escaped"
5314 .It Li "window_silence_flag" Ta "" Ta "1 if window has silence alert"
5315 .It Li "window_stack_index" Ta "" Ta "Index in session most recent stack"
5316 .It Li "window_start_flag" Ta "" Ta "1 if window has the lowest index"
5317 .It Li "window_visible_layout" Ta "" Ta "Window layout description, respecting zoomed window panes"
5318 .It Li "window_width" Ta "" Ta "Width of window"
5319 .It Li "window_zoomed_flag" Ta "" Ta "1 if window is zoomed"
5320 .It Li "wrap_flag" Ta "" Ta "Pane wrap flag"
5322 .Sh STYLES
5324 offers various options to specify the colour and attributes of aspects of the
5325 interface, for example
5326 .Ic status-style
5327 for the status line.
5328 In addition, embedded styles may be specified in format options, such as
5329 .Ic status-left ,
5330 by enclosing them in
5331 .Ql #[
5333 .Ql \&] .
5335 A style may be the single term
5336 .Ql default
5337 to specify the default style (which may come from an option, for example
5338 .Ic status-style
5339 in the status line) or a space
5340 or comma separated list of the following:
5341 .Bl -tag -width Ds
5342 .It Ic fg=colour
5343 Set the foreground colour.
5344 The colour is one of:
5345 .Ic black ,
5346 .Ic red ,
5347 .Ic green ,
5348 .Ic yellow ,
5349 .Ic blue ,
5350 .Ic magenta ,
5351 .Ic cyan ,
5352 .Ic white ;
5353 if supported the bright variants
5354 .Ic brightred ,
5355 .Ic brightgreen ,
5356 .Ic brightyellow ;
5357 .Ic colour0
5359 .Ic colour255
5360 from the 256-colour set;
5361 .Ic default
5362 for the default colour;
5363 .Ic terminal
5364 for the terminal default colour; or a hexadecimal RGB string such as
5365 .Ql #ffffff .
5366 .It Ic bg=colour
5367 Set the background colour.
5368 .It Ic none
5369 Set no attributes (turn off any active attributes).
5370 .It Xo Ic acs ,
5371 .Ic bright
5373 .Ic bold ) ,
5374 .Ic dim ,
5375 .Ic underscore ,
5376 .Ic blink ,
5377 .Ic reverse ,
5378 .Ic hidden ,
5379 .Ic italics ,
5380 .Ic overline ,
5381 .Ic strikethrough ,
5382 .Ic double-underscore ,
5383 .Ic curly-underscore ,
5384 .Ic dotted-underscore ,
5385 .Ic dashed-underscore
5387 Set an attribute.
5388 Any of the attributes may be prefixed with
5389 .Ql no
5390 to unset.
5391 .Ic acs
5392 is the terminal alternate character set.
5393 .It Xo Ic align=left
5395 .Ic noalign ) ,
5396 .Ic align=centre ,
5397 .Ic align=right
5399 Align text to the left, centre or right of the available space if appropriate.
5400 .It Ic fill=colour
5401 Fill the available space with a background colour if appropriate.
5402 .It Xo Ic list=on ,
5403 .Ic list=focus ,
5404 .Ic list=left-marker ,
5405 .Ic list=right-marker ,
5406 .Ic nolist
5408 Mark the position of the various window list components in the
5409 .Ic status-format
5410 option:
5411 .Ic list=on
5412 marks the start of the list;
5413 .Ic list=focus
5414 is the part of the list that should be kept in focus if the entire list won't fit
5415 in the available space (typically the current window);
5416 .Ic list=left-marker
5418 .Ic list=right-marker
5419 mark the text to be used to mark that text has been trimmed from the left or
5420 right of the list if there is not enough space.
5421 .It Xo Ic push-default ,
5422 .Ic pop-default
5424 Store the current colours and attributes as the default or reset to the previous
5425 default.
5427 .Ic push-default
5428 affects any subsequent use of the
5429 .Ic default
5430 term until a
5431 .Ic pop-default .
5432 Only one default may be pushed (each
5433 .Ic push-default
5434 replaces the previous saved default).
5435 .It Xo Ic range=left ,
5436 .Ic range=right ,
5437 .Ic range=window|X ,
5438 .Ic norange
5440 Mark a range in the
5441 .Ic status-format
5442 option.
5443 .Ic range=left
5445 .Ic range=right
5446 are the text used for the
5447 .Ql StatusLeft
5449 .Ql StatusRight
5450 mouse keys.
5451 .Ic range=window|X
5452 is the range for a window passed to the
5453 .Ql Status
5454 mouse key, where
5455 .Ql X
5456 is a window index.
5459 Examples are:
5460 .Bd -literal -offset indent
5461 fg=yellow bold underscore blink
5462 bg=black,fg=default,noreverse
5464 .Sh NAMES AND TITLES
5466 distinguishes between names and titles.
5467 Windows and sessions have names, which may be used to specify them in targets
5468 and are displayed in the status line and various lists: the name is the
5470 identifier for a window or session.
5471 Only panes have titles.
5472 A pane's title is typically set by the program running inside the pane using
5473 an escape sequence (like it would set the
5474 .Xr xterm 1
5475 window title in
5476 .Xr X 7 ) .
5477 Windows themselves do not have titles - a window's title is the title of its
5478 active pane.
5480 itself may set the title of the terminal in which the client is running, see
5482 .Ic set-titles
5483 option.
5485 A session's name is set with the
5486 .Ic new-session
5488 .Ic rename-session
5489 commands.
5490 A window's name is set with one of:
5491 .Bl -enum -width Ds
5493 A command argument (such as
5494 .Fl n
5496 .Ic new-window
5498 .Ic new-session ) .
5500 An escape sequence (if the
5501 .Ic allow-rename
5502 option is turned on):
5503 .Bd -literal -offset indent
5504 $ printf '\e033kWINDOW_NAME\e033\e\e'
5507 Automatic renaming, which sets the name to the active command in the window's
5508 active pane.
5509 See the
5510 .Ic automatic-rename
5511 option.
5514 When a pane is first created, its title is the hostname.
5515 A pane's title can be set via the title setting escape sequence, for example:
5516 .Bd -literal -offset indent
5517 $ printf '\e033]2;My Title\e033\e\e'
5520 It can also be modified with the
5521 .Ic select-pane
5522 .Fl T
5523 command.
5524 .Sh GLOBAL AND SESSION ENVIRONMENT
5525 When the server is started,
5527 copies the environment into the
5528 .Em global environment ;
5529 in addition, each session has a
5530 .Em session environment .
5531 When a window is created, the session and global environments are merged.
5532 If a variable exists in both, the value from the session environment is used.
5533 The result is the initial environment passed to the new process.
5536 .Ic update-environment
5537 session option may be used to update the session environment from the client
5538 when a new session is created or an old reattached.
5540 also initialises the
5541 .Ev TMUX
5542 variable with some internal information to allow commands to be executed
5543 from inside, and the
5544 .Ev TERM
5545 variable with the correct terminal setting of
5546 .Ql screen .
5548 Variables in both session and global environments may be marked as hidden.
5549 Hidden variables are not passed into the environment of new processes and
5550 instead can only be used by tmux itself (for example in formats, see the
5551 .Sx FORMATS
5552 section).
5554 Commands to alter and view the environment are:
5555 .Bl -tag -width Ds
5556 .Tg setenv
5557 .It Xo Ic set-environment
5558 .Op Fl Fhgru
5559 .Op Fl t Ar target-session
5560 .Ar name Op Ar value
5562 .D1 Pq alias: Ic setenv
5563 Set or unset an environment variable.
5565 .Fl g
5566 is used, the change is made in the global environment; otherwise, it is applied
5567 to the session environment for
5568 .Ar target-session .
5570 .Fl F
5571 is present, then
5572 .Ar value
5573 is expanded as a format.
5575 .Fl u
5576 flag unsets a variable.
5577 .Fl r
5578 indicates the variable is to be removed from the environment before starting a
5579 new process.
5580 .Fl h
5581 marks the variable as hidden.
5582 .Tg showenv
5583 .It Xo Ic show-environment
5584 .Op Fl hgs
5585 .Op Fl t Ar target-session
5586 .Op Ar variable
5588 .D1 Pq alias: Ic showenv
5589 Display the environment for
5590 .Ar target-session
5591 or the global environment with
5592 .Fl g .
5594 .Ar variable
5595 is omitted, all variables are shown.
5596 Variables removed from the environment are prefixed with
5597 .Ql - .
5599 .Fl s
5600 is used, the output is formatted as a set of Bourne shell commands.
5601 .Fl h
5602 shows hidden variables (omitted by default).
5604 .Sh STATUS LINE
5606 includes an optional status line which is displayed in the bottom line of each
5607 terminal.
5609 By default, the status line is enabled and one line in height (it may be
5610 disabled or made multiple lines with the
5611 .Ic status
5612 session option) and contains, from left-to-right: the name of the current
5613 session in square brackets; the window list; the title of the active pane
5614 in double quotes; and the time and date.
5616 Each line of the status line is configured with the
5617 .Ic status-format
5618 option.
5619 The default is made of three parts: configurable left and right sections (which
5620 may contain dynamic content such as the time or output from a shell command,
5621 see the
5622 .Ic status-left ,
5623 .Ic status-left-length ,
5624 .Ic status-right ,
5626 .Ic status-right-length
5627 options below), and a central window list.
5628 By default, the window list shows the index, name and (if any) flag of the
5629 windows present in the current session in ascending numerical order.
5630 It may be customised with the
5631 .Ar window-status-format
5633 .Ar window-status-current-format
5634 options.
5635 The flag is one of the following symbols appended to the window name:
5636 .Bl -column "Symbol" "Meaning" -offset indent
5637 .It Sy "Symbol" Ta Sy "Meaning"
5638 .It Li "*" Ta "Denotes the current window."
5639 .It Li "-" Ta "Marks the last window (previously selected)."
5640 .It Li "#" Ta "Window activity is monitored and activity has been detected."
5641 .It Li "\&!" Ta "Window bells are monitored and a bell has occurred in the window."
5642 .It Li "~" Ta "The window has been silent for the monitor-silence interval."
5643 .It Li "M" Ta "The window contains the marked pane."
5644 .It Li "Z" Ta "The window's active pane is zoomed."
5647 The # symbol relates to the
5648 .Ic monitor-activity
5649 window option.
5650 The window name is printed in inverted colours if an alert (bell, activity or
5651 silence) is present.
5653 The colour and attributes of the status line may be configured, the entire
5654 status line using the
5655 .Ic status-style
5656 session option and individual windows using the
5657 .Ic window-status-style
5658 window option.
5660 The status line is automatically refreshed at interval if it has changed, the
5661 interval may be controlled with the
5662 .Ic status-interval
5663 session option.
5665 Commands related to the status line are as follows:
5666 .Bl -tag -width Ds
5667 .Tg clearphist
5668 .It Xo Ic clear-prompt-history
5669 .Op Fl T Ar prompt-type
5671 .D1 Pq alias: Ic clearphist
5672 Clear status prompt history for prompt type
5673 .Ar prompt-type .
5675 .Fl T
5676 is omitted, then clear history for all types.
5678 .Ic command-prompt
5679 for possible values for
5680 .Ar prompt-type .
5681 .It Xo Ic command-prompt
5682 .Op Fl 1bFikN
5683 .Op Fl I Ar inputs
5684 .Op Fl p Ar prompts
5685 .Op Fl t Ar target-client
5686 .Op Fl T Ar prompt-type
5687 .Op Ar template
5689 Open the command prompt in a client.
5690 This may be used from inside
5692 to execute commands interactively.
5695 .Ar template
5696 is specified, it is used as the command.
5697 With
5698 .Fl F ,
5699 .Ar template
5700 is expanded as a format.
5702 If present,
5703 .Fl I
5704 is a comma-separated list of the initial text for each prompt.
5706 .Fl p
5707 is given,
5708 .Ar prompts
5709 is a comma-separated list of prompts which are displayed in order; otherwise
5710 a single prompt is displayed, constructed from
5711 .Ar template
5712 if it is present, or
5713 .Ql \&:
5714 if not.
5716 Before the command is executed, the first occurrence of the string
5717 .Ql %%
5718 and all occurrences of
5719 .Ql %1
5720 are replaced by the response to the first prompt, all
5721 .Ql %2
5722 are replaced with the response to the second prompt, and so on for further
5723 prompts.
5724 Up to nine prompt responses may be replaced
5726 .Ql %1
5728 .Ql %9
5729 .Pc .
5730 .Ql %%%
5731 is like
5732 .Ql %%
5733 but any quotation marks are escaped.
5735 .Fl 1
5736 makes the prompt only accept one key press, in this case the resulting input
5737 is a single character.
5738 .Fl k
5739 is like
5740 .Fl 1
5741 but the key press is translated to a key name.
5742 .Fl N
5743 makes the prompt only accept numeric key presses.
5744 .Fl i
5745 executes the command every time the prompt input changes instead of when the
5746 user exits the command prompt.
5748 .Fl T
5749 tells
5751 the prompt type.
5752 This affects what completions are offered when
5753 .Em Tab
5754 is pressed.
5755 Available types are:
5756 .Ql command ,
5757 .Ql search ,
5758 .Ql target
5760 .Ql window-target .
5762 The following keys have a special meaning in the command prompt, depending
5763 on the value of the
5764 .Ic status-keys
5765 option:
5766 .Bl -column "FunctionXXXXXXXXXXXXXXXXXXXXXXXXX" "viXXXX" "emacsX" -offset indent
5767 .It Sy "Function" Ta Sy "vi" Ta Sy "emacs"
5768 .It Li "Cancel command prompt" Ta "q" Ta "Escape"
5769 .It Li "Delete from cursor to start of word" Ta "" Ta "C-w"
5770 .It Li "Delete entire command" Ta "d" Ta "C-u"
5771 .It Li "Delete from cursor to end" Ta "D" Ta "C-k"
5772 .It Li "Execute command" Ta "Enter" Ta "Enter"
5773 .It Li "Get next command from history" Ta "" Ta "Down"
5774 .It Li "Get previous command from history" Ta "" Ta "Up"
5775 .It Li "Insert top paste buffer" Ta "p" Ta "C-y"
5776 .It Li "Look for completions" Ta "Tab" Ta "Tab"
5777 .It Li "Move cursor left" Ta "h" Ta "Left"
5778 .It Li "Move cursor right" Ta "l" Ta "Right"
5779 .It Li "Move cursor to end" Ta "$" Ta "C-e"
5780 .It Li "Move cursor to next word" Ta "w" Ta "M-f"
5781 .It Li "Move cursor to previous word" Ta "b" Ta "M-b"
5782 .It Li "Move cursor to start" Ta "0" Ta "C-a"
5783 .It Li "Transpose characters" Ta "" Ta "C-t"
5786 With
5787 .Fl b ,
5788 the prompt is shown in the background and the invoking client does not exit
5789 until it is dismissed.
5790 .Tg confirm
5791 .It Xo Ic confirm-before
5792 .Op Fl b
5793 .Op Fl p Ar prompt
5794 .Op Fl t Ar target-client
5795 .Ar command
5797 .D1 Pq alias: Ic confirm
5798 Ask for confirmation before executing
5799 .Ar command .
5801 .Fl p
5802 is given,
5803 .Ar prompt
5804 is the prompt to display; otherwise a prompt is constructed from
5805 .Ar command .
5806 It may contain the special character sequences supported by the
5807 .Ic status-left
5808 option.
5809 With
5810 .Fl b ,
5811 the prompt is shown in the background and the invoking client does not exit
5812 until it is dismissed.
5813 .Tg menu
5814 .It Xo Ic display-menu
5815 .Op Fl O
5816 .Op Fl c Ar target-client
5817 .Op Fl t Ar target-pane
5818 .Op Fl S Ar starting-choice
5819 .Op Fl T Ar title
5820 .Op Fl x Ar position
5821 .Op Fl y Ar position
5822 .Ar name
5823 .Ar key
5824 .Ar command Op Ar argument ...
5826 .D1 Pq alias: Ic menu
5827 Display a menu on
5828 .Ar target-client .
5829 .Ar target-pane
5830 gives the target for any commands run from the menu.
5832 A menu is passed as a series of arguments: first the menu item name,
5833 second the key shortcut (or empty for none) and third the command
5834 to run when the menu item is chosen.
5835 The name and command are formats, see the
5836 .Sx FORMATS
5838 .Sx STYLES
5839 sections.
5840 If the name begins with a hyphen (-), then the item is disabled (shown dim) and
5841 may not be chosen.
5842 The name may be empty for a separator line, in which case both the key and
5843 command should be omitted.
5845 .Fl T
5846 is a format for the menu title (see
5847 .Sx FORMATS ) .
5848 .Fl S
5849 sets the menu item selected by default, if the menu is not bound to a mouse key
5850 binding.
5852 .Fl x
5854 .Fl y
5855 give the position of the menu.
5856 Both may be a row or column number, or one of the following special values:
5857 .Bl -column "XXXXX" "XXXX" -offset indent
5858 .It Sy "Value" Ta Sy "Flag" Ta Sy "Meaning"
5859 .It Li "C" Ta "Both" Ta "The centre of the terminal"
5860 .It Li "R" Ta Fl x Ta "The right side of the terminal"
5861 .It Li "P" Ta "Both" Ta "The bottom left of the pane"
5862 .It Li "M" Ta "Both" Ta "The mouse position"
5863 .It Li "W" Ta "Both" Ta "The window position on the status line"
5864 .It Li "S" Ta Fl y Ta "The line above or below the status line"
5867 Or a format, which is expanded including the following additional variables:
5868 .Bl -column "XXXXXXXXXXXXXXXXXXXXXXXXXX" -offset indent
5869 .It Sy "Variable name" Ta Sy "Replaced with"
5870 .It Li "popup_centre_x" Ta "Centered in the client"
5871 .It Li "popup_centre_y" Ta "Centered in the client"
5872 .It Li "popup_height" Ta "Height of menu or popup"
5873 .It Li "popup_mouse_bottom" Ta "Bottom of at the mouse"
5874 .It Li "popup_mouse_centre_x" Ta "Horizontal centre at the mouse"
5875 .It Li "popup_mouse_centre_y" Ta "Vertical centre at the mouse"
5876 .It Li "popup_mouse_top" Ta "Top at the mouse"
5877 .It Li "popup_mouse_x" Ta "Mouse X position"
5878 .It Li "popup_mouse_y" Ta "Mouse Y position"
5879 .It Li "popup_pane_bottom" Ta "Bottom of the pane"
5880 .It Li "popup_pane_left" Ta "Left of the pane"
5881 .It Li "popup_pane_right" Ta "Right of the pane"
5882 .It Li "popup_pane_top" Ta "Top of the pane"
5883 .It Li "popup_status_line_y" Ta "Above or below the status line"
5884 .It Li "popup_width" Ta "Width of menu or popup"
5885 .It Li "popup_window_status_line_x" Ta "At the window position in status line"
5886 .It Li "popup_window_status_line_y" Ta "At the status line showing the window"
5889 Each menu consists of items followed by a key shortcut shown in brackets.
5890 If the menu is too large to fit on the terminal, it is not displayed.
5891 Pressing the key shortcut chooses the corresponding item.
5892 If the mouse is enabled and the menu is opened from a mouse key binding,
5893 releasing the mouse button with an item selected chooses that item and
5894 releasing the mouse button without an item selected closes the menu.
5895 .Fl O
5896 changes this behaviour so that the menu does not close when the mouse button is
5897 released without an item selected the menu is not closed and a mouse button
5898 must be clicked to choose an item.
5900 The following keys are also available:
5901 .Bl -column "Key" "Function" -offset indent
5902 .It Sy "Key" Ta Sy "Function"
5903 .It Li "Enter" Ta "Choose selected item"
5904 .It Li "Up" Ta "Select previous item"
5905 .It Li "Down" Ta "Select next item"
5906 .It Li "q" Ta "Exit menu"
5908 .Tg display
5909 .It Xo Ic display-message
5910 .Op Fl aIlNpv
5911 .Op Fl c Ar target-client
5912 .Op Fl d Ar delay
5913 .Op Fl t Ar target-pane
5914 .Op Ar message
5916 .D1 Pq alias: Ic display
5917 Display a message.
5919 .Fl p
5920 is given, the output is printed to stdout, otherwise it is displayed in the
5921 .Ar target-client
5922 status line for up to
5923 .Ar delay
5924 milliseconds.
5926 .Ar delay
5927 is not given, the
5928 .Ic display-time
5929 option is used; a delay of zero waits for a key press.
5930 .Ql N
5931 ignores key presses and closes only after the delay expires.
5933 .Fl l
5934 is given,
5935 .Ar message
5936 is printed unchanged.
5937 Otherwise, the format of
5938 .Ar message
5939 is described in the
5940 .Sx FORMATS
5941 section; information is taken from
5942 .Ar target-pane
5944 .Fl t
5945 is given, otherwise the active pane.
5947 .Fl v
5948 prints verbose logging as the format is parsed and
5949 .Fl a
5950 lists the format variables and their values.
5952 .Fl I
5953 forwards any input read from stdin to the empty pane given by
5954 .Ar target-pane .
5955 .Tg popup
5956 .It Xo Ic display-popup
5957 .Op Fl BCE
5958 .Op Fl b Ar border-lines
5959 .Op Fl c Ar target-client
5960 .Op Fl d Ar start-directory
5961 .Op Fl e Ar environment
5962 .Op Fl h Ar height
5963 .Op Fl s Ar style
5964 .Op Fl S Ar border-style
5965 .Op Fl t Ar target-pane
5966 .Op Fl T Ar title
5967 .Op Fl w Ar width
5968 .Op Fl x Ar position
5969 .Op Fl y Ar position
5970 .Op Ar shell-command
5972 .D1 Pq alias: Ic popup
5973 Display a popup running
5974 .Ar shell-command
5976 .Ar target-client .
5977 A popup is a rectangular box drawn over the top of any panes.
5978 Panes are not updated while a popup is present.
5980 .Fl E
5981 closes the popup automatically when
5982 .Ar shell-command
5983 exits.
5985 .Fl E
5986 closes the popup only if
5987 .Ar shell-command
5988 exited with success.
5990 .Fl x
5992 .Fl y
5993 give the position of the popup, they have the same meaning as for the
5994 .Ic display-menu
5995 command.
5996 .Fl w
5998 .Fl h
5999 give the width and height - both may be a percentage (followed by
6000 .Ql % ) .
6001 If omitted, half of the terminal size is used.
6003 .Fl B
6004 does not surround the popup by a border.
6006 .Fl b
6007 sets the type of border line for the popup.
6008 When
6009 .Fl B
6010 is specified, the
6011 .Fl b
6012 option is ignored.
6014 .Ic popup-border-lines
6015 for possible values for
6016 .Ar border-lines .
6018 .Fl s
6019 sets the style for the popup and
6020 .Fl S
6021 sets the style for the popup border.
6022 For how to specify
6023 .Ar style ,
6024 see the
6025 .Sx STYLES
6026 section.
6028 .Fl e
6029 takes the form
6030 .Ql VARIABLE=value
6031 and sets an environment variable for the popup; it may be specified multiple
6032 times.
6034 .Fl T
6035 is a format for the popup title (see
6036 .Sx FORMATS ) .
6039 .Fl C
6040 flag closes any popup on the client.
6041 .Tg showphist
6042 .It Xo Ic show-prompt-history
6043 .Op Fl T Ar prompt-type
6045 .D1 Pq alias: Ic showphist
6046 Display status prompt history for prompt type
6047 .Ar prompt-type .
6049 .Fl T
6050 is omitted, then show history for all types.
6052 .Ic command-prompt
6053 for possible values for
6054 .Ar prompt-type .
6056 .Sh BUFFERS
6058 maintains a set of named
6059 .Em paste buffers .
6060 Each buffer may be either explicitly or automatically named.
6061 Explicitly named buffers are named when created with the
6062 .Ic set-buffer
6064 .Ic load-buffer
6065 commands, or by renaming an automatically named buffer with
6066 .Ic set-buffer
6067 .Fl n .
6068 Automatically named buffers are given a name such as
6069 .Ql buffer0001 ,
6070 .Ql buffer0002
6071 and so on.
6072 When the
6073 .Ic buffer-limit
6074 option is reached, the oldest automatically named buffer is deleted.
6075 Explicitly named buffers are not subject to
6076 .Ic buffer-limit
6077 and may be deleted with the
6078 .Ic delete-buffer
6079 command.
6081 Buffers may be added using
6082 .Ic copy-mode
6083 or the
6084 .Ic set-buffer
6086 .Ic load-buffer
6087 commands, and pasted into a window using the
6088 .Ic paste-buffer
6089 command.
6090 If a buffer command is used and no buffer is specified, the most
6091 recently added automatically named buffer is assumed.
6093 A configurable history buffer is also maintained for each window.
6094 By default, up to 2000 lines are kept; this can be altered with the
6095 .Ic history-limit
6096 option (see the
6097 .Ic set-option
6098 command above).
6100 The buffer commands are as follows:
6101 .Bl -tag -width Ds
6102 .It Xo
6103 .Ic choose-buffer
6104 .Op Fl NZr
6105 .Op Fl F Ar format
6106 .Op Fl f Ar filter
6107 .Op Fl K Ar key-format
6108 .Op Fl O Ar sort-order
6109 .Op Fl t Ar target-pane
6110 .Op Ar template
6112 Put a pane into buffer mode, where a buffer may be chosen interactively from
6113 a list.
6114 Each buffer is shown on one line.
6115 A shortcut key is shown on the left in brackets allowing for immediate choice,
6116 or the list may be navigated and an item chosen or otherwise manipulated using
6117 the keys below.
6118 .Fl Z
6119 zooms the pane.
6120 The following keys may be used in buffer mode:
6121 .Bl -column "Key" "Function" -offset indent
6122 .It Sy "Key" Ta Sy "Function"
6123 .It Li "Enter" Ta "Paste selected buffer"
6124 .It Li "Up" Ta "Select previous buffer"
6125 .It Li "Down" Ta "Select next buffer"
6126 .It Li "C-s" Ta "Search by name or content"
6127 .It Li "n" Ta "Repeat last search"
6128 .It Li "t" Ta "Toggle if buffer is tagged"
6129 .It Li "T" Ta "Tag no buffers"
6130 .It Li "C-t" Ta "Tag all buffers"
6131 .It Li "p" Ta "Paste selected buffer"
6132 .It Li "P" Ta "Paste tagged buffers"
6133 .It Li "d" Ta "Delete selected buffer"
6134 .It Li "D" Ta "Delete tagged buffers"
6135 .It Li "e" Ta "Open the buffer in an editor"
6136 .It Li "f" Ta "Enter a format to filter items"
6137 .It Li "O" Ta "Change sort field"
6138 .It Li "r" Ta "Reverse sort order"
6139 .It Li "v" Ta "Toggle preview"
6140 .It Li "q" Ta "Exit mode"
6143 After a buffer is chosen,
6144 .Ql %%
6145 is replaced by the buffer name in
6146 .Ar template
6147 and the result executed as a command.
6149 .Ar template
6150 is not given, "paste-buffer -b '%%'" is used.
6152 .Fl O
6153 specifies the initial sort field: one of
6154 .Ql time
6155 (creation),
6156 .Ql name
6158 .Ql size .
6159 .Fl r
6160 reverses the sort order.
6161 .Fl f
6162 specifies an initial filter: the filter is a format - if it evaluates to zero,
6163 the item in the list is not shown, otherwise it is shown.
6164 If a filter would lead to an empty list, it is ignored.
6165 .Fl F
6166 specifies the format for each item in the list and
6167 .Fl K
6168 a format for each shortcut key; both are evaluated once for each line.
6169 .Fl N
6170 starts without the preview.
6171 This command works only if at least one client is attached.
6172 .Tg clearhist
6173 .It Xo Ic clear-history
6174 .Op Fl H
6175 .Op Fl t Ar target-pane
6177 .D1 Pq alias: Ic clearhist
6178 Remove and free the history for the specified pane.
6179 .Fl H
6180 also removes all hyperlinks.
6181 .Tg deleteb
6182 .It Ic delete-buffer Op Fl b Ar buffer-name
6183 .D1 Pq alias: Ic deleteb
6184 Delete the buffer named
6185 .Ar buffer-name ,
6186 or the most recently added automatically named buffer if not specified.
6187 .Tg lsb
6188 .It Xo Ic list-buffers
6189 .Op Fl F Ar format
6190 .Op Fl f Ar filter
6192 .D1 Pq alias: Ic lsb
6193 List the global buffers.
6194 .Fl F
6195 specifies the format of each line and
6196 .Fl f
6197 a filter.
6198 Only buffers for which the filter is true are shown.
6199 See the
6200 .Sx FORMATS
6201 section.
6202 .It Xo Ic load-buffer
6203 .Op Fl w
6204 .Op Fl b Ar buffer-name
6205 .Op Fl t Ar target-client
6206 .Ar path
6208 .Tg loadb
6209 .D1 Pq alias: Ic loadb
6210 Load the contents of the specified paste buffer from
6211 .Ar path .
6213 .Fl w
6214 is given, the buffer is also sent to the clipboard for
6215 .Ar target-client
6216 using the
6217 .Xr xterm 1
6218 escape sequence, if possible.
6219 .Tg pasteb
6220 .It Xo Ic paste-buffer
6221 .Op Fl dpr
6222 .Op Fl b Ar buffer-name
6223 .Op Fl s Ar separator
6224 .Op Fl t Ar target-pane
6226 .D1 Pq alias: Ic pasteb
6227 Insert the contents of a paste buffer into the specified pane.
6228 If not specified, paste into the current one.
6229 With
6230 .Fl d ,
6231 also delete the paste buffer.
6232 When output, any linefeed (LF) characters in the paste buffer are replaced with
6233 a separator, by default carriage return (CR).
6234 A custom separator may be specified using the
6235 .Fl s
6236 flag.
6238 .Fl r
6239 flag means to do no replacement (equivalent to a separator of LF).
6241 .Fl p
6242 is specified, paste bracket control codes are inserted around the
6243 buffer if the application has requested bracketed paste mode.
6244 .Tg saveb
6245 .It Xo Ic save-buffer
6246 .Op Fl a
6247 .Op Fl b Ar buffer-name
6248 .Ar path
6250 .D1 Pq alias: Ic saveb
6251 Save the contents of the specified paste buffer to
6252 .Ar path .
6254 .Fl a
6255 option appends to rather than overwriting the file.
6256 .It Xo Ic set-buffer
6257 .Op Fl aw
6258 .Op Fl b Ar buffer-name
6259 .Op Fl t Ar target-client
6260 .Tg setb
6261 .Op Fl n Ar new-buffer-name
6262 .Ar data
6264 .D1 Pq alias: Ic setb
6265 Set the contents of the specified buffer to
6266 .Ar data .
6268 .Fl w
6269 is given, the buffer is also sent to the clipboard for
6270 .Ar target-client
6271 using the
6272 .Xr xterm 1
6273 escape sequence, if possible.
6275 .Fl a
6276 option appends to rather than overwriting the buffer.
6278 .Fl n
6279 option renames the buffer to
6280 .Ar new-buffer-name .
6281 .Tg showb
6282 .It Xo Ic show-buffer
6283 .Op Fl b Ar buffer-name
6285 .D1 Pq alias: Ic showb
6286 Display the contents of the specified buffer.
6288 .Sh MISCELLANEOUS
6289 Miscellaneous commands are as follows:
6290 .Bl -tag -width Ds
6291 .It Ic clock-mode Op Fl t Ar target-pane
6292 Display a large clock.
6293 .Tg if
6294 .It Xo Ic if-shell
6295 .Op Fl bF
6296 .Op Fl t Ar target-pane
6297 .Ar shell-command command
6298 .Op Ar command
6300 .D1 Pq alias: Ic if
6301 Execute the first
6302 .Ar command
6304 .Ar shell-command
6305 (run with
6306 .Pa /bin/sh )
6307 returns success or the second
6308 .Ar command
6309 otherwise.
6310 Before being executed,
6311 .Ar shell-command
6312 is expanded using the rules specified in the
6313 .Sx FORMATS
6314 section, including those relevant to
6315 .Ar target-pane .
6316 With
6317 .Fl b ,
6318 .Ar shell-command
6319 is run in the background.
6322 .Fl F
6323 is given,
6324 .Ar shell-command
6325 is not executed but considered success if neither empty nor zero (after formats
6326 are expanded).
6327 .Tg lock
6328 .It Ic lock-server
6329 .D1 Pq alias: Ic lock
6330 Lock each client individually by running the command specified by the
6331 .Ic lock-command
6332 option.
6333 .Tg run
6334 .It Xo Ic run-shell
6335 .Op Fl bC
6336 .Op Fl d Ar delay
6337 .Op Fl t Ar target-pane
6338 .Op Ar shell-command
6340 .D1 Pq alias: Ic run
6341 Execute
6342 .Ar shell-command
6343 using
6344 .Pa /bin/sh
6345 or (with
6346 .Fl C )
6349 command in the background without creating a window.
6350 Before being executed,
6351 .Ar shell-command
6352 is expanded using the rules specified in the
6353 .Sx FORMATS
6354 section.
6355 With
6356 .Fl b ,
6357 the command is run in the background.
6358 .Fl d
6359 waits for
6360 .Ar delay
6361 seconds before starting the command.
6363 .Fl C
6364 is not given, any output to stdout is displayed in view mode (in the pane
6365 specified by
6366 .Fl t
6367 or the current pane if omitted) after the command finishes.
6368 If the command fails, the exit status is also displayed.
6369 .Tg wait
6370 .It Xo Ic wait-for
6371 .Op Fl L | S | U
6372 .Ar channel
6374 .D1 Pq alias: Ic wait
6375 When used without options, prevents the client from exiting until woken using
6376 .Ic wait-for
6377 .Fl S
6378 with the same channel.
6379 When
6380 .Fl L
6381 is used, the channel is locked and any clients that try to lock the same
6382 channel are made to wait until the channel is unlocked with
6383 .Ic wait-for
6384 .Fl U .
6386 .Sh EXIT MESSAGES
6387 When a
6389 client detaches, it prints a message.
6390 This may be one of:
6391 .Bl -tag -width Ds
6392 .It detached (from session ...)
6393 The client was detached normally.
6394 .It detached and SIGHUP
6395 The client was detached and its parent sent the
6396 .Dv SIGHUP
6397 signal (for example with
6398 .Ic detach-client
6399 .Fl P ) .
6400 .It lost tty
6401 The client's
6402 .Xr tty 4
6404 .Xr pty 4
6405 was unexpectedly destroyed.
6406 .It terminated
6407 The client was killed with
6408 .Dv SIGTERM .
6409 .It too far behind
6410 The client is in control mode and became unable to keep up with the data from
6411 .Nm .
6412 .It exited
6413 The server exited when it had no sessions.
6414 .It server exited
6415 The server exited when it received
6416 .Dv SIGTERM .
6417 .It server exited unexpectedly
6418 The server crashed or otherwise exited without telling the client the reason.
6420 .Sh TERMINFO EXTENSIONS
6422 understands some unofficial extensions to
6423 .Xr terminfo 5 .
6424 It is not normally necessary to set these manually, instead the
6425 .Ic terminal-features
6426 option should be used.
6427 .Bl -tag -width Ds
6428 .It Em \&AX
6429 An existing extension that tells
6431 the terminal supports default colours.
6432 .It Em \&Bidi
6433 Tell
6435 that the terminal supports the VTE bidirectional text extensions.
6436 .It Em \&Cs , Cr
6437 Set the cursor colour.
6438 The first takes a single string argument and is used to set the colour;
6439 the second takes no arguments and restores the default cursor colour.
6440 If set, a sequence such as this may be used
6441 to change the cursor colour from inside
6442 .Nm :
6443 .Bd -literal -offset indent
6444 $ printf '\e033]12;red\e033\e\e'
6447 The colour is an
6448 .Xr X 7
6449 colour, see
6450 .Xr XParseColor 3 .
6451 .It Em \&Cmg, \&Clmg, \&Dsmg , \&Enmg
6452 Set, clear, disable or enable DECSLRM margins.
6453 These are set automatically if the terminal reports it is
6454 .Em VT420
6455 compatible.
6456 .It Em \&Dsbp , \&Enbp
6457 Disable and enable bracketed paste.
6458 These are set automatically if the
6459 .Em XT
6460 capability is present.
6461 .It Em \&Dseks , \&Eneks
6462 Disable and enable extended keys.
6463 .It Em \&Dsfcs , \&Enfcs
6464 Disable and enable focus reporting.
6465 These are set automatically if the
6466 .Em XT
6467 capability is present.
6468 .It Em \&Hls
6469 Set or clear a hyperlink annotation.
6470 .It Em \&Nobr
6471 Tell
6473 that the terminal does not use bright colors for bold display.
6474 .It Em \&Rect
6475 Tell
6477 that the terminal supports rectangle operations.
6478 .It Em \&Smol
6479 Enable the overline attribute.
6480 .It Em \&Smulx
6481 Set a styled underscore.
6482 The single parameter is one of: 0 for no underscore, 1 for normal
6483 underscore, 2 for double underscore, 3 for curly underscore, 4 for dotted
6484 underscore and 5 for dashed underscore.
6485 .It Em \&Setulc , \&ol
6486 Set the underscore colour or reset to the default.
6487 The argument is (red * 65536) + (green * 256) + blue where each is between 0
6488 and 255.
6489 .It Em \&Ss , Se
6490 Set or reset the cursor style.
6491 If set, a sequence such as this may be used
6492 to change the cursor to an underline:
6493 .Bd -literal -offset indent
6494 $ printf '\e033[4 q'
6498 .Em Se
6499 is not set, \&Ss with argument 0 will be used to reset the cursor style instead.
6500 .It Em \&Swd
6501 Set the opening sequence for the working directory notification.
6502 The sequence is terminated using the standard
6503 .Em fsl
6504 capability.
6505 .It Em \&Sxl
6506 Indicates that the terminal supports SIXEL.
6507 .It Em \&Sync
6508 Start (parameter is 1) or end (parameter is 2) a synchronized update.
6509 .It Em \&Tc
6510 Indicate that the terminal supports the
6511 .Ql direct colour
6512 RGB escape sequence (for example, \ee[38;2;255;255;255m).
6514 If supported, this is used for the initialize colour escape sequence (which
6515 may be enabled by adding the
6516 .Ql initc
6518 .Ql ccc
6519 capabilities to the
6521 .Xr terminfo 5
6522 entry).
6524 This is equivalent to the
6525 .Em RGB
6526 .Xr terminfo 5
6527 capability.
6528 .It Em \&Ms
6529 Store the current buffer in the host terminal's selection (clipboard).
6530 See the
6531 .Em set-clipboard
6532 option above and the
6533 .Xr xterm 1
6534 man page.
6535 .It Em \&XT
6536 This is an existing extension capability that tmux uses to mean that the
6537 terminal supports the
6538 .Xr xterm 1
6539 title set sequences and to automatically set some of the capabilities above.
6541 .Sh CONTROL MODE
6543 offers a textual interface called
6544 .Em control mode .
6545 This allows applications to communicate with
6547 using a simple text-only protocol.
6549 In control mode, a client sends
6551 commands or command sequences terminated by newlines on standard input.
6552 Each command will produce one block of output on standard output.
6553 An output block consists of a
6554 .Em %begin
6555 line followed by the output (which may be empty).
6556 The output block ends with a
6557 .Em %end
6559 .Em %error .
6560 .Em %begin
6561 and matching
6562 .Em %end
6564 .Em %error
6565 have three arguments: an integer time (as seconds from epoch), command number and
6566 flags (currently not used).
6567 For example:
6568 .Bd -literal -offset indent
6569 %begin 1363006971 2 1
6570 0: ksh* (1 panes) [80x24] [layout b25f,80x24,0,0,2] @2 (active)
6571 %end 1363006971 2 1
6575 .Ic refresh-client
6576 .Fl C
6577 command may be used to set the size of a client in control mode.
6579 In control mode,
6581 outputs notifications.
6582 A notification will never occur inside an output block.
6584 The following notifications are defined:
6585 .Bl -tag -width Ds
6586 .It Ic %client-detached Ar client
6587 The client has detached.
6588 .It Ic %client-session-changed Ar client session-id name
6589 The client is now attached to the session with ID
6590 .Ar session-id ,
6591 which is named
6592 .Ar name .
6593 .It Ic %config-error Ar error
6594 An error has happened in a configuration file.
6595 .It Ic %continue Ar pane-id
6596 The pane has been continued after being paused (if the
6597 .Ar pause-after
6598 flag is set, see
6599 .Ic refresh-client
6600 .Fl A ) .
6601 .It Ic %exit Op Ar reason
6604 client is exiting immediately, either because it is not attached to any session
6605 or an error occurred.
6606 If present,
6607 .Ar reason
6608 describes why the client exited.
6609 .It Ic %extended-output Ar pane-id Ar age Ar ... \&  : Ar value
6610 New form of
6611 .Ic %output
6612 sent when the
6613 .Ar pause-after
6614 flag is set.
6615 .Ar age
6616 is the time in milliseconds for which tmux had buffered the output before it was sent.
6617 Any subsequent arguments up until a single
6618 .Ql \&:
6619 are for future use and should be ignored.
6620 .It Ic %layout-change Ar window-id Ar window-layout Ar window-visible-layout Ar window-flags
6621 The layout of a window with ID
6622 .Ar window-id
6623 changed.
6624 The new layout is
6625 .Ar window-layout .
6626 The window's visible layout is
6627 .Ar window-visible-layout
6628 and the window flags are
6629 .Ar window-flags .
6630 .It Ic %message Ar message
6631 A message sent with the
6632 .Ic display-message
6633 command.
6634 .It Ic %output Ar pane-id Ar value
6635 A window pane produced output.
6636 .Ar value
6637 escapes non-printable characters and backslash as octal \\xxx.
6638 .It Ic %pane-mode-changed Ar pane-id
6639 The pane with ID
6640 .Ar pane-id
6641 has changed mode.
6642 .It Ic %paste-buffer-changed Ar name
6643 Paste buffer
6644 .Ar name
6645 has been changed.
6646 .It Ic %paste-buffer-deleted Ar name
6647 Paste buffer
6648 .Ar name
6649 has been deleted.
6650 .It Ic %pause Ar pane-id
6651 The pane has been paused (if the
6652 .Ar pause-after
6653 flag is set).
6654 .It Ic %session-changed Ar session-id Ar name
6655 The client is now attached to the session with ID
6656 .Ar session-id ,
6657 which is named
6658 .Ar name .
6659 .It Ic %session-renamed Ar name
6660 The current session was renamed to
6661 .Ar name .
6662 .It Ic %session-window-changed Ar session-id Ar window-id
6663 The session with ID
6664 .Ar session-id
6665 changed its active window to the window with ID
6666 .Ar window-id .
6667 .It Ic %sessions-changed
6668 A session was created or destroyed.
6669 .It Xo Ic %subscription-changed
6670 .Ar name
6671 .Ar session-id
6672 .Ar window-id
6673 .Ar window-index
6674 .Ar pane-id ... \&  :
6675 .Ar value
6677 The value of the format associated with subscription
6678 .Ar name
6679 has changed to
6680 .Ar value .
6682 .Ic refresh-client
6683 .Fl B .
6684 Any arguments after
6685 .Ar pane-id
6686 up until a single
6687 .Ql \&:
6688 are for future use and should be ignored.
6689 .It Ic %unlinked-window-add Ar window-id
6690 The window with ID
6691 .Ar window-id
6692 was created but is not linked to the current session.
6693 .It Ic %unlinked-window-close Ar window-id
6694 The window with ID
6695 .Ar window-id ,
6696 which is not linked to the current session, was closed.
6697 .It Ic %unlinked-window-renamed Ar window-id
6698 The window with ID
6699 .Ar window-id ,
6700 which is not linked to the current session, was renamed.
6701 .It Ic %window-add Ar window-id
6702 The window with ID
6703 .Ar window-id
6704 was linked to the current session.
6705 .It Ic %window-close Ar window-id
6706 The window with ID
6707 .Ar window-id
6708 closed.
6709 .It Ic %window-pane-changed Ar window-id Ar pane-id
6710 The active pane in the window with ID
6711 .Ar window-id
6712 changed to the pane with ID
6713 .Ar pane-id .
6714 .It Ic %window-renamed Ar window-id Ar name
6715 The window with ID
6716 .Ar window-id
6717 was renamed to
6718 .Ar name .
6720 .Sh ENVIRONMENT
6721 When
6723 is started, it inspects the following environment variables:
6724 .Bl -tag -width LC_CTYPE
6725 .It Ev EDITOR
6726 If the command specified in this variable contains the string
6727 .Ql vi
6729 .Ev VISUAL
6730 is unset, use vi-style key bindings.
6731 Overridden by the
6732 .Ic mode-keys
6734 .Ic status-keys
6735 options.
6736 .It Ev HOME
6737 The user's login directory.
6738 If unset, the
6739 .Xr passwd 5
6740 database is consulted.
6741 .It Ev LC_CTYPE
6742 The character encoding
6743 .Xr locale 1 .
6744 It is used for two separate purposes.
6745 For output to the terminal, UTF-8 is used if the
6746 .Fl u
6747 option is given or if
6748 .Ev LC_CTYPE
6749 contains
6750 .Qq UTF-8
6752 .Qq UTF8 .
6753 Otherwise, only ASCII characters are written and non-ASCII characters
6754 are replaced with underscores
6755 .Pq Ql _ .
6756 For input,
6758 always runs with a UTF-8 locale.
6759 If en_US.UTF-8 is provided by the operating system, it is used and
6760 .Ev LC_CTYPE
6761 is ignored for input.
6762 Otherwise,
6763 .Ev LC_CTYPE
6764 tells
6766 what the UTF-8 locale is called on the current system.
6767 If the locale specified by
6768 .Ev LC_CTYPE
6769 is not available or is not a UTF-8 locale,
6771 exits with an error message.
6772 .It Ev LC_TIME
6773 The date and time format
6774 .Xr locale 1 .
6775 It is used for locale-dependent
6776 .Xr strftime 3
6777 format specifiers.
6778 .It Ev PWD
6779 The current working directory to be set in the global environment.
6780 This may be useful if it contains symbolic links.
6781 If the value of the variable does not match the current working
6782 directory, the variable is ignored and the result of
6783 .Xr getcwd 3
6784 is used instead.
6785 .It Ev SHELL
6786 The absolute path to the default shell for new windows.
6787 See the
6788 .Ic default-shell
6789 option for details.
6790 .It Ev TMUX_TMPDIR
6791 The parent directory of the directory containing the server sockets.
6792 See the
6793 .Fl L
6794 option for details.
6795 .It Ev VISUAL
6796 If the command specified in this variable contains the string
6797 .Ql vi ,
6798 use vi-style key bindings.
6799 Overridden by the
6800 .Ic mode-keys
6802 .Ic status-keys
6803 options.
6805 .Sh FILES
6806 .Bl -tag -width "/etc/tmux.confXXX" -compact
6807 .It Pa ~/.tmux.conf
6808 Default
6810 configuration file.
6811 .It Pa /etc/tmux.conf
6812 System-wide configuration file.
6814 .Sh EXAMPLES
6815 To create a new
6817 session running
6818 .Xr vi 1 :
6820 .Dl $ tmux new-session vi
6822 Most commands have a shorter form, known as an alias.
6823 For new-session, this is
6824 .Ic new :
6826 .Dl $ tmux new vi
6828 Alternatively, the shortest unambiguous form of a command is accepted.
6829 If there are several options, they are listed:
6830 .Bd -literal -offset indent
6831 $ tmux n
6832 ambiguous command: n, could be: new-session, new-window, next-window
6835 Within an active session, a new window may be created by typing
6836 .Ql C-b c
6837 (Ctrl
6838 followed by the
6839 .Ql b
6841 followed by the
6842 .Ql c
6843 key).
6845 Windows may be navigated with:
6846 .Ql C-b 0
6847 (to select window 0),
6848 .Ql C-b 1
6849 (to select window 1), and so on;
6850 .Ql C-b n
6851 to select the next window; and
6852 .Ql C-b p
6853 to select the previous window.
6855 A session may be detached using
6856 .Ql C-b d
6857 (or by an external event such as
6858 .Xr ssh 1
6859 disconnection) and reattached with:
6861 .Dl $ tmux attach-session
6863 Typing
6864 .Ql C-b \&?
6865 lists the current key bindings in the current window; up and down may be used
6866 to navigate the list or
6867 .Ql q
6868 to exit from it.
6870 Commands to be run when the
6872 server is started may be placed in the
6873 .Pa ~/.tmux.conf
6874 configuration file.
6875 Common examples include:
6877 Changing the default prefix key:
6878 .Bd -literal -offset indent
6879 set-option -g prefix C-a
6880 unbind-key C-b
6881 bind-key C-a send-prefix
6884 Turning the status line off, or changing its colour:
6885 .Bd -literal -offset indent
6886 set-option -g status off
6887 set-option -g status-style bg=blue
6890 Setting other options, such as the default command,
6891 or locking after 30 minutes of inactivity:
6892 .Bd -literal -offset indent
6893 set-option -g default-command "exec /bin/ksh"
6894 set-option -g lock-after-time 1800
6897 Creating new key bindings:
6898 .Bd -literal -offset indent
6899 bind-key b set-option status
6900 bind-key / command-prompt "split-window 'exec man %%'"
6901 bind-key S command-prompt "new-window -n %1 'ssh %1'"
6903 .Sh SEE ALSO
6904 .Xr pty 4
6905 .Sh AUTHORS
6906 .An Nicholas Marriott Aq Mt nicholas.marriott@gmail.com