Do not try to strdup NULL, from seL4 at disroot dot org in GitHub issue
[tmux-openbsd.git] / tmux.1
blob708f5c7564c08d003dacfbd900ad1733a469bc85
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 2CDluvV
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 u
207 Write UTF-8 output to the terminal even if the first environment
208 variable of
209 .Ev LC_ALL ,
210 .Ev LC_CTYPE ,
212 .Ev LANG
213 that is set does not contain
214 .Qq UTF-8
216 .Qq UTF8 .
217 This is equivalent to
218 .Fl T Ar UTF-8 .
219 .It Fl T Ar features
220 Set terminal features for the client.
221 This is a comma-separated list of features.
222 See the
223 .Ic terminal-features
224 option.
225 .It Fl v
226 Request verbose logging.
227 Log messages will be saved into
228 .Pa tmux-client-PID.log
230 .Pa tmux-server-PID.log
231 files in the current directory, where
232 .Em PID
233 is the PID of the server or client process.
235 .Fl v
236 is specified twice, an additional
237 .Pa tmux-out-PID.log
238 file is generated with a copy of everything
240 writes to the terminal.
243 .Dv SIGUSR2
244 signal may be sent to the
246 server process to toggle logging between on (as if
247 .Fl v
248 was given) and off.
249 .It Fl V
250 Report the
252 version.
253 .It Ar command Op Ar flags
254 This specifies one of a set of commands used to control
255 .Nm ,
256 as described in the following sections.
257 If no commands are specified, the
258 .Ic new-session
259 command is assumed.
261 .Sh DEFAULT KEY BINDINGS
263 may be controlled from an attached client by using a key combination of a
264 prefix key,
265 .Ql C-b
266 (Ctrl-b) by default, followed by a command key.
268 The default command key bindings are:
270 .Bl -tag -width "XXXXXXXXXX" -offset indent -compact
271 .It C-b
272 Send the prefix key (C-b) through to the application.
273 .It C-o
274 Rotate the panes in the current window forwards.
275 .It C-z
276 Suspend the
278 client.
279 .It !
280 Break the current pane out of the window.
281 .It \&"
282 .\" "
283 Split the current pane into two, top and bottom.
284 .It #
285 List all paste buffers.
286 .It $
287 Rename the current session.
288 .It %
289 Split the current pane into two, left and right.
290 .It &
291 Kill the current window.
292 .It '
293 Prompt for a window index to select.
294 .It \&(
295 Switch the attached client to the previous session.
296 .It \&)
297 Switch the attached client to the next session.
298 .It ,
299 Rename the current window.
300 .It -
301 Delete the most recently copied buffer of text.
302 .It .
303 Prompt for an index to move the current window.
304 .It 0 to 9
305 Select windows 0 to 9.
306 .It :
307 Enter the
309 command prompt.
310 .It ;
311 Move to the previously active pane.
312 .It =
313 Choose which buffer to paste interactively from a list.
314 .It \&?
315 List all key bindings.
316 .It D
317 Choose a client to detach.
318 .It L
319 Switch the attached client back to the last session.
320 .It \&[
321 Enter copy mode to copy text or view the history.
322 .It \&]
323 Paste the most recently copied buffer of text.
324 .It c
325 Create a new window.
326 .It d
327 Detach the current client.
328 .It f
329 Prompt to search for text in open windows.
330 .It i
331 Display some information about the current window.
332 .It l
333 Move to the previously selected window.
334 .It m
335 Mark the current pane (see
336 .Ic select-pane
337 .Fl m ) .
338 .It M
339 Clear the marked pane.
340 .It n
341 Change to the next window.
342 .It o
343 Select the next pane in the current window.
344 .It p
345 Change to the previous window.
346 .It q
347 Briefly display pane indexes.
348 .It r
349 Force redraw of the attached client.
350 .It s
351 Select a new session for the attached client interactively.
352 .It t
353 Show the time.
354 .It w
355 Choose the current window interactively.
356 .It x
357 Kill the current pane.
358 .It z
359 Toggle zoom state of the current pane.
360 .It {
361 Swap the current pane with the previous pane.
362 .It }
363 Swap the current pane with the next pane.
364 .It ~
365 Show previous messages from
366 .Nm ,
367 if any.
368 .It Page Up
369 Enter copy mode and scroll one page up.
370 .It Up, Down
371 .It Left, Right
372 Change to the pane above, below, to the left, or to the right of the current
373 pane.
374 .It M-1 to M-5
375 Arrange panes in one of the five preset layouts: even-horizontal,
376 even-vertical, main-horizontal, main-vertical, or tiled.
377 .It Space
378 Arrange the current window in the next preset layout.
379 .It M-n
380 Move to the next window with a bell or activity marker.
381 .It M-o
382 Rotate the panes in the current window backwards.
383 .It M-p
384 Move to the previous window with a bell or activity marker.
385 .It C-Up, C-Down
386 .It C-Left, C-Right
387 Resize the current pane in steps of one cell.
388 .It M-Up, M-Down
389 .It M-Left, M-Right
390 Resize the current pane in steps of five cells.
393 Key bindings may be changed with the
394 .Ic bind-key
396 .Ic unbind-key
397 commands.
398 .Sh COMMAND PARSING AND EXECUTION
400 supports a large number of commands which can be used to control its
401 behaviour.
402 Each command is named and can accept zero or more flags and arguments.
403 They may be bound to a key with the
404 .Ic bind-key
405 command or run from the shell prompt, a shell script, a configuration file or
406 the command prompt.
407 For example, the same
408 .Ic set-option
409 command run from the shell prompt, from
410 .Pa ~/.tmux.conf
411 and bound to a key may look like:
412 .Bd -literal -offset indent
413 $ tmux set-option -g status-style bg=cyan
415 set-option -g status-style bg=cyan
417 bind-key C set-option -g status-style bg=cyan
420 Here, the command name is
421 .Ql set-option ,
422 .Ql Fl g
423 is a flag and
424 .Ql status-style
426 .Ql bg=cyan
427 are arguments.
430 distinguishes between command parsing and execution.
431 In order to execute a command,
433 needs it to be split up into its name and arguments.
434 This is command parsing.
435 If a command is run from the shell, the shell parses it; from inside
437 or from a configuration file,
439 does.
440 Examples of when
442 parses commands are:
443 .Bl -dash -offset indent
445 in a configuration file;
447 typed at the command prompt (see
448 .Ic command-prompt ) ;
450 given to
451 .Ic bind-key ;
453 passed as arguments to
454 .Ic if-shell
456 .Ic confirm-before .
459 To execute commands, each client has a
460 .Ql command queue .
461 A global command queue not attached to any client is used on startup
462 for configuration files like
463 .Pa ~/.tmux.conf .
464 Parsed commands added to the queue are executed in order.
465 Some commands, like
466 .Ic if-shell
468 .Ic confirm-before ,
469 parse their argument to create a new command which is inserted immediately
470 after themselves.
471 This means that arguments can be parsed twice or more - once when the parent command (such as
472 .Ic if-shell )
473 is parsed and again when it parses and executes its command.
474 Commands like
475 .Ic if-shell ,
476 .Ic run-shell
478 .Ic display-panes
479 stop execution of subsequent commands on the queue until something happens -
480 .Ic if-shell
482 .Ic run-shell
483 until a shell command finishes and
484 .Ic display-panes
485 until a key is pressed.
486 For example, the following commands:
487 .Bd -literal -offset indent
488 new-session; new-window
489 if-shell "true" "split-window"
490 kill-session
493 Will execute
494 .Ic new-session ,
495 .Ic new-window ,
496 .Ic if-shell ,
497 the shell command
498 .Xr true 1 ,
499 .Ic split-window
501 .Ic kill-session
502 in that order.
505 .Sx COMMANDS
506 section lists the
508 commands and their arguments.
509 .Sh PARSING SYNTAX
510 This section describes the syntax of commands parsed by
511 .Nm ,
512 for example in a configuration file or at the command prompt.
513 Note that when commands are entered into the shell, they are parsed by the shell
514 - see for example
515 .Xr ksh 1
517 .Xr csh 1 .
519 Each command is terminated by a newline or a semicolon (;).
520 Commands separated by semicolons together form a
521 .Ql command sequence
522 - if a command in the sequence encounters an error, no subsequent commands are
523 executed.
525 It is recommended that a semicolon used as a command separator should be
526 written as an individual token, for example from
527 .Xr sh 1 :
528 .Bd -literal -offset indent
529 $ tmux neww \\; splitw
533 .Bd -literal -offset indent
534 $ tmux neww ';' splitw
537 Or from the tmux command prompt:
538 .Bd -literal -offset indent
539 neww ; splitw
542 However, a trailing semicolon is also interpreted as a command separator,
543 for example in these
544 .Xr sh 1
545 commands:
546 .Bd -literal -offset indent
547 $ tmux neww\e\e; splitw
551 .Bd -literal -offset indent
552 $ tmux 'neww;' splitw
555 As in these examples, when running tmux from the shell extra care must be taken
556 to properly quote semicolons:
557 .Bl -enum -offset Ds
559 Semicolons that should be interpreted as a command separator
560 should be escaped according to the shell conventions.
562 .Xr sh 1
563 this typically means quoted (such as
564 .Ql neww ';' splitw )
565 or escaped (such as
566 .Ql neww \e\e\e\e; splitw ) .
568 Individual semicolons or trailing semicolons that should be interpreted as
569 arguments should be escaped twice: once according to the shell conventions and
570 a second time for
571 .Nm ;
572 for example:
573 .Bd -literal -offset indent
574 $ tmux neww 'foo\e\e;' bar
575 $ tmux neww foo\e\e\e\e; bar
578 Semicolons that are not individual tokens or trailing another token should only
579 be escaped once according to shell conventions; for example:
580 .Bd -literal -offset indent
581 $ tmux neww 'foo-;-bar'
582 $ tmux neww foo-\e\e;-bar
586 Comments are marked by the unquoted # character - any remaining text after a
587 comment is ignored until the end of the line.
589 If the last character of a line is \e, the line is joined with the following
590 line (the \e and the newline are completely removed).
591 This is called line continuation and applies both inside and outside quoted
592 strings and in comments, but not inside braces.
594 Command arguments may be specified as strings surrounded by single (') quotes,
595 double quotes (") or braces ({}).
596 .\" "
597 This is required when the argument contains any special character.
598 Single and double quoted strings cannot span multiple lines except with line
599 continuation.
600 Braces can span multiple lines.
602 Outside of quotes and inside double quotes, these replacements are performed:
603 .Bl -dash -offset indent
605 Environment variables preceded by $ are replaced with their value from the
606 global environment (see the
607 .Sx GLOBAL AND SESSION ENVIRONMENT
608 section).
610 A leading ~ or ~user is expanded to the home directory of the current or
611 specified user.
613 \euXXXX or \euXXXXXXXX is replaced by the Unicode codepoint corresponding to
614 the given four or eight digit hexadecimal number.
616 When preceded (escaped) by a \e, the following characters are replaced: \ee by
617 the escape character; \er by a carriage return; \en by a newline; and \et by a
618 tab.
620 \eooo is replaced by a character of the octal value ooo.
621 Three octal digits are required, for example \e001.
622 The largest valid character is \e377.
624 Any other characters preceded by \e are replaced by themselves (that is, the \e
625 is removed) and are not treated as having any special meaning - so for example
626 \e; will not mark a command sequence and \e$ will not expand an environment
627 variable.
630 Braces are parsed as a configuration file (so conditions such as
631 .Ql %if
632 are processed) and then converted into a string.
633 They are designed to avoid the need for additional escaping when passing a
634 group of
636 commands as an argument (for example to
637 .Ic if-shell ) .
638 These two examples produce an identical command - note that no escaping is
639 needed when using {}:
640 .Bd -literal -offset indent
641 if-shell true {
642     display -p 'brace-dollar-foo: }$foo'
645 if-shell true "display -p 'brace-dollar-foo: }\e$foo'"
648 Braces may be enclosed inside braces, for example:
649 .Bd -literal -offset indent
650 bind x if-shell "true" {
651     if-shell "true" {
652         display "true!"
653     }
657 Environment variables may be set by using the syntax
658 .Ql name=value ,
659 for example
660 .Ql HOME=/home/user .
661 Variables set during parsing are added to the global environment.
662 A hidden variable may be set with
663 .Ql %hidden ,
664 for example:
665 .Bd -literal -offset indent
666 %hidden MYVAR=42
669 Hidden variables are not passed to the environment of processes created
670 by tmux.
671 See the
672 .Sx GLOBAL AND SESSION ENVIRONMENT
673 section.
675 Commands may be parsed conditionally by surrounding them with
676 .Ql %if ,
677 .Ql %elif ,
678 .Ql %else
680 .Ql %endif .
681 The argument to
682 .Ql %if
684 .Ql %elif
685 is expanded as a format (see
686 .Sx FORMATS )
687 and if it evaluates to false (zero or empty), subsequent text is ignored until
688 the closing
689 .Ql %elif ,
690 .Ql %else
692 .Ql %endif .
693 For example:
694 .Bd -literal -offset indent
695 %if "#{==:#{host},myhost}"
696 set -g status-style bg=red
697 %elif "#{==:#{host},myotherhost}"
698 set -g status-style bg=green
699 %else
700 set -g status-style bg=blue
701 %endif
704 Will change the status line to red if running on
705 .Ql myhost ,
706 green if running on
707 .Ql myotherhost ,
708 or blue if running on another host.
709 Conditionals may be given on one line, for example:
710 .Bd -literal -offset indent
711 %if #{==:#{host},myhost} set -g status-style bg=red %endif
713 .Sh COMMANDS
714 This section describes the commands supported by
715 .Nm .
716 Most commands accept the optional
717 .Fl t
718 (and sometimes
719 .Fl s )
720 argument with one of
721 .Ar target-client ,
722 .Ar target-session ,
723 .Ar target-window ,
725 .Ar target-pane .
726 These specify the client, session, window or pane which a command should affect.
728 .Ar target-client
729 should be the name of the client,
730 typically the
731 .Xr pty 4
732 file to which the client is connected, for example either of
733 .Pa /dev/ttyp1
735 .Pa ttyp1
736 for the client attached to
737 .Pa /dev/ttyp1 .
738 If no client is specified,
740 attempts to work out the client currently in use; if that fails, an error is
741 reported.
742 Clients may be listed with the
743 .Ic list-clients
744 command.
746 .Ar target-session
747 is tried as, in order:
748 .Bl -enum -offset Ds
750 A session ID prefixed with a $.
752 An exact name of a session (as listed by the
753 .Ic list-sessions
754 command).
756 The start of a session name, for example
757 .Ql mysess
758 would match a session named
759 .Ql mysession .
762 .Xr fnmatch 3
763 pattern which is matched against the session name.
766 If the session name is prefixed with an
767 .Ql = ,
768 only an exact match is accepted (so
769 .Ql =mysess
770 will only match exactly
771 .Ql mysess ,
773 .Ql mysession ) .
775 If a single session is found, it is used as the target session; multiple matches
776 produce an error.
777 If a session is omitted, the current session is used if available; if no
778 current session is available, the most recently used is chosen.
780 .Ar target-window
782 .Ar src-window
784 .Ar dst-window )
785 specifies a window in the form
786 .Em session Ns \&: Ns Em window .
787 .Em session
788 follows the same rules as for
789 .Ar target-session ,
791 .Em window
792 is looked for in order as:
793 .Bl -enum -offset Ds
795 A special token, listed below.
797 A window index, for example
798 .Ql mysession:1
799 is window 1 in session
800 .Ql mysession .
802 A window ID, such as @1.
804 An exact window name, such as
805 .Ql mysession:mywindow .
807 The start of a window name, such as
808 .Ql mysession:mywin .
810 As an
811 .Xr fnmatch 3
812 pattern matched against the window name.
815 Like sessions, a
816 .Ql =
817 prefix will do an exact match only.
818 An empty window name specifies the next unused index if appropriate (for
819 example the
820 .Ic new-window
822 .Ic link-window
823 commands)
824 otherwise the current window in
825 .Em session
826 is chosen.
828 The following special tokens are available to indicate particular windows.
829 Each has a single-character alternative form.
830 .Bl -column "XXXXXXXXXX" "X"
831 .It Sy "Token" Ta Sy "" Ta Sy "Meaning"
832 .It Li "{start}" Ta "^" Ta "The lowest-numbered window"
833 .It Li "{end}" Ta "$" Ta "The highest-numbered window"
834 .It Li "{last}" Ta "!" Ta "The last (previously current) window"
835 .It Li "{next}" Ta "+" Ta "The next window by number"
836 .It Li "{previous}" Ta "-" Ta "The previous window by number"
839 .Ar target-pane
841 .Ar src-pane
843 .Ar dst-pane )
844 may be a pane ID or takes a similar form to
845 .Ar target-window
846 but with the optional addition of a period followed by a pane index or pane ID,
847 for example:
848 .Ql mysession:mywindow.1 .
849 If the pane index is omitted, the currently active pane in the specified
850 window is used.
851 The following special tokens are available for the pane index:
852 .Bl -column "XXXXXXXXXXXXXX" "X"
853 .It Sy "Token" Ta Sy "" Ta Sy "Meaning"
854 .It Li "{last}" Ta "!" Ta "The last (previously active) pane"
855 .It Li "{next}" Ta "+" Ta "The next pane by number"
856 .It Li "{previous}" Ta "-" Ta "The previous pane by number"
857 .It Li "{top}" Ta "" Ta "The top pane"
858 .It Li "{bottom}" Ta "" Ta "The bottom pane"
859 .It Li "{left}" Ta "" Ta "The leftmost pane"
860 .It Li "{right}" Ta "" Ta "The rightmost pane"
861 .It Li "{top-left}" Ta "" Ta "The top-left pane"
862 .It Li "{top-right}" Ta "" Ta "The top-right pane"
863 .It Li "{bottom-left}" Ta "" Ta "The bottom-left pane"
864 .It Li "{bottom-right}" Ta "" Ta "The bottom-right pane"
865 .It Li "{up-of}" Ta "" Ta "The pane above the active pane"
866 .It Li "{down-of}" Ta "" Ta "The pane below the active pane"
867 .It Li "{left-of}" Ta "" Ta "The pane to the left of the active pane"
868 .It Li "{right-of}" Ta "" Ta "The pane to the right of the active pane"
871 The tokens
872 .Ql +
874 .Ql -
875 may be followed by an offset, for example:
876 .Bd -literal -offset indent
877 select-window -t:+2
880 In addition,
881 .Em target-session ,
882 .Em target-window
884 .Em target-pane
885 may consist entirely of the token
886 .Ql {mouse}
887 (alternative form
888 .Ql = )
889 to specify the session, window or pane where the most recent mouse event occurred
890 (see the
891 .Sx MOUSE SUPPORT
892 section)
894 .Ql {marked}
895 (alternative form
896 .Ql ~ )
897 to specify the marked pane (see
898 .Ic select-pane
899 .Fl m ) .
901 Sessions, window and panes are each numbered with a unique ID; session IDs are
902 prefixed with a
903 .Ql $ ,
904 windows with a
905 .Ql @ ,
906 and panes with a
907 .Ql % .
908 These are unique and are unchanged for the life of the session, window or pane
909 in the
911 server.
912 The pane ID is passed to the child process of the pane in the
913 .Ev TMUX_PANE
914 environment variable.
915 IDs may be displayed using the
916 .Ql session_id ,
917 .Ql window_id ,
919 .Ql pane_id
920 formats (see the
921 .Sx FORMATS
922 section) and the
923 .Ic display-message ,
924 .Ic list-sessions ,
925 .Ic list-windows
927 .Ic list-panes
928 commands.
930 .Ar shell-command
931 arguments are
932 .Xr sh 1
933 commands.
934 This may be a single argument passed to the shell, for example:
935 .Bd -literal -offset indent
936 new-window 'vi ~/.tmux.conf'
939 Will run:
940 .Bd -literal -offset indent
941 /bin/sh -c 'vi ~/.tmux.conf'
944 Additionally, the
945 .Ic new-window ,
946 .Ic new-session ,
947 .Ic split-window ,
948 .Ic respawn-window
950 .Ic respawn-pane
951 commands allow
952 .Ar shell-command
953 to be given as multiple arguments and executed directly (without
954 .Ql sh -c ) .
955 This can avoid issues with shell quoting.
956 For example:
957 .Bd -literal -offset indent
958 $ tmux new-window vi ~/.tmux.conf
961 Will run
962 .Xr vi 1
963 directly without invoking the shell.
965 .Ar command
966 .Op Ar arguments
967 refers to a
969 command, either passed with the command and arguments separately, for example:
970 .Bd -literal -offset indent
971 bind-key F1 set-option status off
974 Or passed as a single string argument in
975 .Pa .tmux.conf ,
976 for example:
977 .Bd -literal -offset indent
978 bind-key F1 { set-option status off }
981 Example
983 commands include:
984 .Bd -literal -offset indent
985 refresh-client -t/dev/ttyp2
987 rename-session -tfirst newname
989 set-option -wt:0 monitor-activity on
991 new-window ; split-window -d
993 bind-key R source-file ~/.tmux.conf \e; \e
994         display-message "source-file done"
997 Or from
998 .Xr sh 1 :
999 .Bd -literal -offset indent
1000 $ tmux kill-window -t :1
1002 $ tmux new-window \e; split-window -d
1004 $ tmux new-session -d 'vi ~/.tmux.conf' \e; split-window -d \e; attach
1006 .Sh CLIENTS AND SESSIONS
1009 server manages clients, sessions, windows and panes.
1010 Clients are attached to sessions to interact with them, either
1011 when they are created with the
1012 .Ic new-session
1013 command, or later with the
1014 .Ic attach-session
1015 command.
1016 Each session has one or more windows
1017 .Em linked
1018 into it.
1019 Windows may be linked to multiple sessions and are made up of one or
1020 more panes,
1021 each of which contains a pseudo terminal.
1022 Commands for creating, linking and otherwise manipulating windows
1023 are covered
1024 in the
1025 .Sx WINDOWS AND PANES
1026 section.
1028 The following commands are available to manage clients and sessions:
1029 .Bl -tag -width Ds
1030 .Tg attach
1031 .It Xo Ic attach-session
1032 .Op Fl dErx
1033 .Op Fl c Ar working-directory
1034 .Op Fl f Ar flags
1035 .Op Fl t Ar target-session
1037 .D1 Pq alias: Ic attach
1038 If run from outside
1039 .Nm ,
1040 create a new client in the current terminal and attach it to
1041 .Ar target-session .
1042 If used from inside, switch the current client.
1044 .Fl d
1045 is specified, any other clients attached to the session are detached.
1047 .Fl x
1048 is given, send
1049 .Dv SIGHUP
1050 to the parent process of the client as well as
1051 detaching the client, typically causing it to exit.
1052 .Fl f
1053 sets a comma-separated list of client flags.
1054 The flags are:
1055 .Bl -tag -width Ds
1056 .It active-pane
1057 the client has an independent active pane
1058 .It ignore-size
1059 the client does not affect the size of other clients
1060 .It no-output
1061 the client does not receive pane output in control mode
1062 .It pause-after=seconds
1063 output is paused once the pane is
1064 .Ar seconds
1065 behind in control mode
1066 .It read-only
1067 the client is read-only
1068 .It wait-exit
1069 wait for an empty line input before exiting in control mode
1072 A leading
1073 .Ql \&!
1074 turns a flag off if the client is already attached.
1075 .Fl r
1076 is an alias for
1077 .Fl f
1078 .Ar read-only,ignore-size .
1079 When a client is read-only, only keys bound to the
1080 .Ic detach-client
1082 .Ic switch-client
1083 commands have any effect.
1084 A client with the
1085 .Ar active-pane
1086 flag allows the active pane to be selected independently of the window's active
1087 pane used by clients without the flag.
1088 This only affects the cursor position and commands issued from the client;
1089 other features such as hooks and styles continue to use the window's active
1090 pane.
1092 If no server is started,
1093 .Ic attach-session
1094 will attempt to start it; this will fail unless sessions are created in the
1095 configuration file.
1098 .Ar target-session
1099 rules for
1100 .Ic attach-session
1101 are slightly adjusted: if
1103 needs to select the most recently used session, it will prefer the most
1104 recently used
1105 .Em unattached
1106 session.
1108 .Fl c
1109 will set the session working directory (used for new windows) to
1110 .Ar working-directory .
1113 .Fl E
1114 is used, the
1115 .Ic update-environment
1116 option will not be applied.
1117 .Tg detach
1118 .It Xo Ic detach-client
1119 .Op Fl aP
1120 .Op Fl E Ar shell-command
1121 .Op Fl s Ar target-session
1122 .Op Fl t Ar target-client
1124 .D1 Pq alias: Ic detach
1125 Detach the current client if bound to a key, the client specified with
1126 .Fl t ,
1127 or all clients currently attached to the session specified by
1128 .Fl s .
1130 .Fl a
1131 option kills all but the client given with
1132 .Fl t .
1134 .Fl P
1135 is given, send
1136 .Dv SIGHUP
1137 to the parent process of the client, typically causing it
1138 to exit.
1139 With
1140 .Fl E ,
1142 .Ar shell-command
1143 to replace the client.
1144 .Tg has
1145 .It Ic has-session Op Fl t Ar target-session
1146 .D1 Pq alias: Ic has
1147 Report an error and exit with 1 if the specified session does not exist.
1148 If it does exist, exit with 0.
1149 .It Ic kill-server
1150 Kill the
1152 server and clients and destroy all sessions.
1153 .It Xo Ic kill-session
1154 .Op Fl aC
1155 .Op Fl t Ar target-session
1157 Destroy the given session, closing any windows linked to it and no other
1158 sessions, and detaching all clients attached to it.
1160 .Fl a
1161 is given, all sessions but the specified one is killed.
1163 .Fl C
1164 flag clears alerts (bell, activity, or silence) in all windows linked to the
1165 session.
1166 .Tg lsc
1167 .It Xo Ic list-clients
1168 .Op Fl F Ar format
1169 .Op Fl t Ar target-session
1171 .D1 Pq alias: Ic lsc
1172 List all clients attached to the server.
1173 For the meaning of the
1174 .Fl F
1175 flag, see the
1176 .Sx FORMATS
1177 section.
1179 .Ar target-session
1180 is specified, list only clients connected to that session.
1181 .Tg lscm
1182 .It Xo Ic list-commands
1183 .Op Fl F Ar format
1184 .Op Ar command
1186 .D1 Pq alias: Ic lscm
1187 List the syntax of
1188 .Ar command
1189 or - if omitted - of all commands supported by
1190 .Nm .
1191 .Tg ls
1192 .It Xo Ic list-sessions
1193 .Op Fl F Ar format
1194 .Op Fl f Ar filter
1196 .D1 Pq alias: Ic ls
1197 List all sessions managed by the server.
1198 .Fl F
1199 specifies the format of each line and
1200 .Fl f
1201 a filter.
1202 Only sessions for which the filter is true are shown.
1203 See the
1204 .Sx FORMATS
1205 section.
1206 .Tg lockc
1207 .It Ic lock-client Op Fl t Ar target-client
1208 .D1 Pq alias: Ic lockc
1209 Lock
1210 .Ar target-client ,
1211 see the
1212 .Ic lock-server
1213 command.
1214 .Tg locks
1215 .It Ic lock-session Op Fl t Ar target-session
1216 .D1 Pq alias: Ic locks
1217 Lock all clients attached to
1218 .Ar target-session .
1219 .Tg new
1220 .It Xo Ic new-session
1221 .Op Fl AdDEPX
1222 .Op Fl c Ar start-directory
1223 .Op Fl e Ar environment
1224 .Op Fl f Ar flags
1225 .Op Fl F Ar format
1226 .Op Fl n Ar window-name
1227 .Op Fl s Ar session-name
1228 .Op Fl t Ar group-name
1229 .Op Fl x Ar width
1230 .Op Fl y Ar height
1231 .Op Ar shell-command
1233 .D1 Pq alias: Ic new
1234 Create a new session with name
1235 .Ar session-name .
1237 The new session is attached to the current terminal unless
1238 .Fl d
1239 is given.
1240 .Ar window-name
1242 .Ar shell-command
1243 are the name of and shell command to execute in the initial window.
1244 With
1245 .Fl d ,
1246 the initial size comes from the global
1247 .Ic default-size
1248 option;
1249 .Fl x
1251 .Fl y
1252 can be used to specify a different size.
1253 .Ql -
1254 uses the size of the current client if any.
1256 .Fl x
1258 .Fl y
1259 is given, the
1260 .Ic default-size
1261 option is set for the session.
1262 .Fl f
1263 sets a comma-separated list of client flags (see
1264 .Ic attach-session ) .
1266 If run from a terminal, any
1267 .Xr termios 4
1268 special characters are saved and used for new windows in the new session.
1271 .Fl A
1272 flag makes
1273 .Ic new-session
1274 behave like
1275 .Ic attach-session
1277 .Ar session-name
1278 already exists; in this case,
1279 .Fl D
1280 behaves like
1281 .Fl d
1283 .Ic attach-session ,
1285 .Fl X
1286 behaves like
1287 .Fl x
1289 .Ic attach-session .
1292 .Fl t
1293 is given, it specifies a
1294 .Ic session group .
1295 Sessions in the same group share the same set of windows - new windows are
1296 linked to all sessions in the group and any windows closed removed from all
1297 sessions.
1298 The current and previous window and any session options remain independent and
1299 any session in a group may be killed without affecting the others.
1301 .Ar group-name
1302 argument may be:
1303 .Bl -enum -width Ds
1305 the name of an existing group, in which case the new session is added to that
1306 group;
1308 the name of an existing session - the new session is added to the same group
1309 as that session, creating a new group if necessary;
1311 the name for a new group containing only the new session.
1314 .Fl n
1316 .Ar shell-command
1317 are invalid if
1318 .Fl t
1319 is used.
1322 .Fl P
1323 option prints information about the new session after it has been created.
1324 By default, it uses the format
1325 .Ql #{session_name}:\&
1326 but a different format may be specified with
1327 .Fl F .
1330 .Fl E
1331 is used, the
1332 .Ic update-environment
1333 option will not be applied.
1334 .Fl e
1335 takes the form
1336 .Ql VARIABLE=value
1337 and sets an environment variable for the newly created session; it may be
1338 specified multiple times.
1339 .Tg refresh
1340 .It Xo Ic refresh-client
1341 .Op Fl cDlLRSU
1342 .Op Fl A Ar pane:state
1343 .Op Fl B Ar name:what:format
1344 .Op Fl C Ar size
1345 .Op Fl f Ar flags
1346 .Op Fl t Ar target-client
1347 .Op Ar adjustment
1349 .D1 Pq alias: Ic refresh
1350 Refresh the current client if bound to a key, or a single client if one is given
1351 with
1352 .Fl t .
1354 .Fl S
1355 is specified, only update the client's status line.
1358 .Fl U ,
1359 .Fl D ,
1360 .Fl L
1361 .Fl R ,
1363 .Fl c
1364 flags allow the visible portion of a window which is larger than the client
1365 to be changed.
1366 .Fl U
1367 moves the visible part up by
1368 .Ar adjustment
1369 rows and
1370 .Fl D
1371 down,
1372 .Fl L
1373 left by
1374 .Ar adjustment
1375 columns and
1376 .Fl R
1377 right.
1378 .Fl c
1379 returns to tracking the cursor automatically.
1381 .Ar adjustment
1382 is omitted, 1 is used.
1383 Note that the visible position is a property of the client not of the
1384 window, changing the current window in the attached session will reset
1387 .Fl C
1388 sets the width and height of a control mode client or of a window for a
1389 control mode client,
1390 .Ar size
1391 must be one of
1392 .Ql widthxheight
1394 .Ql window ID:widthxheight ,
1395 for example
1396 .Ql 80x24
1398 .Ql @0:80x24 .
1399 .Fl A
1400 allows a control mode client to trigger actions on a pane.
1401 The argument is a pane ID (with leading
1402 .Ql % ) ,
1403 a colon, then one of
1404 .Ql on ,
1405 .Ql off ,
1406 .Ql continue
1408 .Ql pause .
1410 .Ql off ,
1412 will not send output from the pane to the client and if all clients have turned
1413 the pane off, will stop reading from the pane.
1415 .Ql continue ,
1417 will return to sending output to the pane if it was paused (manually or with the
1418 .Ar pause-after
1419 flag).
1421 .Ql pause ,
1423 will pause the pane.
1424 .Fl A
1425 may be given multiple times for different panes.
1427 .Fl B
1428 sets a subscription to a format for a control mode client.
1429 The argument is split into three items by colons:
1430 .Ar name
1431 is a name for the subscription;
1432 .Ar what
1433 is a type of item to subscribe to;
1434 .Ar format
1435 is the format.
1436 After a subscription is added, changes to the format are reported with the
1437 .Ic %subscription-changed
1438 notification, at most once a second.
1439 If only the name is given, the subscription is removed.
1440 .Ar what
1441 may be empty to check the format only for the attached session, or one of:
1442 a pane ID such as
1443 .Ql %0 ;
1444 .Ql %*
1445 for all panes in the attached session;
1446 a window ID such as
1447 .Ql @0 ;
1449 .Ql @*
1450 for all windows in the attached session.
1452 .Fl f
1453 sets a comma-separated list of client flags, see
1454 .Ic attach-session .
1456 .Fl l
1457 requests the clipboard from the client using the
1458 .Xr xterm 1
1459 escape sequence and stores it in a new paste buffer.
1461 .Fl L ,
1462 .Fl R ,
1463 .Fl U
1465 .Fl D
1466 move the visible portion of the window left, right, up or down
1468 .Ar adjustment ,
1469 if the window is larger than the client.
1470 .Fl c
1471 resets so that the position follows the cursor.
1472 See the
1473 .Ic window-size
1474 option.
1475 .Tg rename
1476 .It Xo Ic rename-session
1477 .Op Fl t Ar target-session
1478 .Ar new-name
1480 .D1 Pq alias: Ic rename
1481 Rename the session to
1482 .Ar new-name .
1483 .Tg showmsgs
1484 .It Xo Ic show-messages
1485 .Op Fl JT
1486 .Op Fl t Ar target-client
1488 .D1 Pq alias: Ic showmsgs
1489 Show server messages or information.
1490 Messages are stored, up to a maximum of the limit set by the
1491 .Ar message-limit
1492 server option.
1493 .Fl J
1495 .Fl T
1496 show debugging information about jobs and terminals.
1497 .Tg source
1498 .It Xo Ic source-file
1499 .Op Fl Fnqv
1500 .Ar path
1501 .Ar ...
1503 .D1 Pq alias: Ic source
1504 Execute commands from one or more files specified by
1505 .Ar path
1506 (which may be
1507 .Xr glob 7
1508 patterns).
1510 .Fl F
1511 is present, then
1512 .Ar path
1513 is expanded as a format.
1515 .Fl q
1516 is given, no error will be returned if
1517 .Ar path
1518 does not exist.
1519 With
1520 .Fl n ,
1521 the file is parsed but no commands are executed.
1522 .Fl v
1523 shows the parsed commands and line numbers if possible.
1524 .Tg start
1525 .It Ic start-server
1526 .D1 Pq alias: Ic start
1527 Start the
1529 server, if not already running, without creating any sessions.
1531 Note that as by default the
1533 server will exit with no sessions, this is only useful if a session is created in
1534 .Pa ~/.tmux.conf ,
1535 .Ic exit-empty
1536 is turned off, or another command is run as part of the same command sequence.
1537 For example:
1538 .Bd -literal -offset indent
1539 $ tmux start \\; show -g
1541 .Tg suspendc
1542 .It Xo Ic suspend-client
1543 .Op Fl t Ar target-client
1545 .D1 Pq alias: Ic suspendc
1546 Suspend a client by sending
1547 .Dv SIGTSTP
1548 (tty stop).
1549 .Tg switchc
1550 .It Xo Ic switch-client
1551 .Op Fl ElnprZ
1552 .Op Fl c Ar target-client
1553 .Op Fl t Ar target-session
1554 .Op Fl T Ar key-table
1556 .D1 Pq alias: Ic switchc
1557 Switch the current session for client
1558 .Ar target-client
1560 .Ar target-session .
1561 As a special case,
1562 .Fl t
1563 may refer to a pane (a target that contains
1564 .Ql \&: ,
1565 .Ql \&.
1567 .Ql % ) ,
1568 to change session, window and pane.
1569 In that case,
1570 .Fl Z
1571 keeps the window zoomed if it was zoomed.
1573 .Fl l ,
1574 .Fl n
1576 .Fl p
1577 is used, the client is moved to the last, next or previous session
1578 respectively.
1579 .Fl r
1580 toggles the client
1581 .Ic read-only
1583 .Ic ignore-size
1584 flags (see the
1585 .Ic attach-session
1586 command).
1589 .Fl E
1590 is used,
1591 .Ic update-environment
1592 option will not be applied.
1594 .Fl T
1595 sets the client's key table; the next key from the client will be interpreted
1596 from
1597 .Ar key-table .
1598 This may be used to configure multiple prefix keys, or to bind commands to
1599 sequences of keys.
1600 For example, to make typing
1601 .Ql abc
1602 run the
1603 .Ic list-keys
1604 command:
1605 .Bd -literal -offset indent
1606 bind-key -Ttable2 c list-keys
1607 bind-key -Ttable1 b switch-client -Ttable2
1608 bind-key -Troot   a switch-client -Ttable1
1611 .Sh WINDOWS AND PANES
1612 Each window displayed by
1614 may be split into one or more
1615 .Em panes ;
1616 each pane takes up a certain area of the display and is a separate terminal.
1617 A window may be split into panes using the
1618 .Ic split-window
1619 command.
1620 Windows may be split horizontally (with the
1621 .Fl h
1622 flag) or vertically.
1623 Panes may be resized with the
1624 .Ic resize-pane
1625 command (bound to
1626 .Ql C-Up ,
1627 .Ql C-Down
1628 .Ql C-Left
1630 .Ql C-Right
1631 by default), the current pane may be changed with the
1632 .Ic select-pane
1633 command and the
1634 .Ic rotate-window
1636 .Ic swap-pane
1637 commands may be used to swap panes without changing their position.
1638 Panes are numbered beginning from zero in the order they are created.
1640 By default, a
1642 pane permits direct access to the terminal contained in the pane.
1643 A pane may also be put into one of several modes:
1644 .Bl -dash -offset indent
1646 Copy mode, which permits a section of a window or its
1647 history to be copied to a
1648 .Em paste buffer
1649 for later insertion into another window.
1650 This mode is entered with the
1651 .Ic copy-mode
1652 command, bound to
1653 .Ql \&[
1654 by default.
1655 Copied text can be pasted with the
1656 .Ic paste-buffer
1657 command, bound to
1658 .Ql \&] .
1660 View mode, which is like copy mode but is entered when a command that produces
1661 output, such as
1662 .Ic list-keys ,
1663 is executed from a key binding.
1665 Choose mode, which allows an item to be chosen from a list.
1666 This may be a client, a session or window or pane, or a buffer.
1667 This mode is entered with the
1668 .Ic choose-buffer ,
1669 .Ic choose-client
1671 .Ic choose-tree
1672 commands.
1675 In copy mode an indicator is displayed in the top-right corner of the pane with
1676 the current position and the number of lines in the history.
1678 Commands are sent to copy mode using the
1679 .Fl X
1680 flag to the
1681 .Ic send-keys
1682 command.
1683 When a key is pressed, copy mode automatically uses one of two key tables,
1684 depending on the
1685 .Ic mode-keys
1686 option:
1687 .Ic copy-mode
1688 for emacs, or
1689 .Ic copy-mode-vi
1690 for vi.
1691 Key tables may be viewed with the
1692 .Ic list-keys
1693 command.
1695 The following commands are supported in copy mode:
1696 .Bl -column "CommandXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" "viXXXXXXXXXX" "emacs" -offset indent
1697 .It Sy "Command" Ta Sy "vi" Ta Sy "emacs"
1698 .It Li "append-selection" Ta "" Ta ""
1699 .It Li "append-selection-and-cancel" Ta "A" Ta ""
1700 .It Li "back-to-indentation" Ta "^" Ta "M-m"
1701 .It Li "begin-selection" Ta "Space" Ta "C-Space"
1702 .It Li "bottom-line" Ta "L" Ta ""
1703 .It Li "cancel" Ta "q" Ta "Escape"
1704 .It Li "clear-selection" Ta "Escape" Ta "C-g"
1705 .It Li "copy-end-of-line [<prefix>]" Ta "" Ta ""
1706 .It Li "copy-end-of-line-and-cancel [<prefix>]" Ta "" Ta ""
1707 .It Li "copy-pipe-end-of-line [<command>] [<prefix>]" Ta "" Ta ""
1708 .It Li "copy-pipe-end-of-line-and-cancel [<command>] [<prefix>]" Ta "D" Ta "C-k"
1709 .It Li "copy-line [<prefix>]" Ta "" Ta ""
1710 .It Li "copy-line-and-cancel [<prefix>]" Ta "" Ta ""
1711 .It Li "copy-pipe-line [<command>] [<prefix>]" Ta "" Ta ""
1712 .It Li "copy-pipe-line-and-cancel [<command>] [<prefix>]" Ta "" Ta ""
1713 .It Li "copy-pipe [<command>] [<prefix>]" Ta "" Ta ""
1714 .It Li "copy-pipe-no-clear [<command>] [<prefix>]" Ta "" Ta ""
1715 .It Li "copy-pipe-and-cancel [<command>] [<prefix>]" Ta "" Ta ""
1716 .It Li "copy-selection [<prefix>]" Ta "" Ta ""
1717 .It Li "copy-selection-no-clear [<prefix>]" Ta "" Ta ""
1718 .It Li "copy-selection-and-cancel [<prefix>]" Ta "Enter" Ta "M-w"
1719 .It Li "cursor-down" Ta "j" Ta "Down"
1720 .It Li "cursor-down-and-cancel" Ta "" Ta ""
1721 .It Li "cursor-left" Ta "h" Ta "Left"
1722 .It Li "cursor-right" Ta "l" Ta "Right"
1723 .It Li "cursor-up" Ta "k" Ta "Up"
1724 .It Li "end-of-line" Ta "$" Ta "C-e"
1725 .It Li "goto-line <line>" Ta ":" Ta "g"
1726 .It Li "halfpage-down" Ta "C-d" Ta "M-Down"
1727 .It Li "halfpage-down-and-cancel" Ta "" Ta ""
1728 .It Li "halfpage-up" Ta "C-u" Ta "M-Up"
1729 .It Li "history-bottom" Ta "G" Ta "M->"
1730 .It Li "history-top" Ta "g" Ta "M-<"
1731 .It Li "jump-again" Ta ";" Ta ";"
1732 .It Li "jump-backward <to>" Ta "F" Ta "F"
1733 .It Li "jump-forward <to>" Ta "f" Ta "f"
1734 .It Li "jump-reverse" Ta "," Ta ","
1735 .It Li "jump-to-backward <to>" Ta "T" Ta ""
1736 .It Li "jump-to-forward <to>" Ta "t" Ta ""
1737 .It Li "jump-to-mark" Ta "M-x" Ta "M-x"
1738 .It Li "middle-line" Ta "M" Ta "M-r"
1739 .It Li "next-matching-bracket" Ta "%" Ta "M-C-f"
1740 .It Li "next-paragraph" Ta "}" Ta "M-}"
1741 .It Li "next-space" Ta "W" Ta ""
1742 .It Li "next-space-end" Ta "E" Ta ""
1743 .It Li "next-word" Ta "w" Ta ""
1744 .It Li "next-word-end" Ta "e" Ta "M-f"
1745 .It Li "other-end" Ta "o" Ta ""
1746 .It Li "page-down" Ta "C-f" Ta "PageDown"
1747 .It Li "page-down-and-cancel" Ta "" Ta ""
1748 .It Li "page-up" Ta "C-b" Ta "PageUp"
1749 .It Li "pipe [<command>] [<prefix>]" Ta "" Ta ""
1750 .It Li "pipe-no-clear [<command>] [<prefix>]" Ta "" Ta ""
1751 .It Li "pipe-and-cancel [<command>] [<prefix>]" Ta "" Ta ""
1752 .It Li "previous-matching-bracket" Ta "" Ta "M-C-b"
1753 .It Li "previous-paragraph" Ta "{" Ta "M-{"
1754 .It Li "previous-space" Ta "B" Ta ""
1755 .It Li "previous-word" Ta "b" Ta "M-b"
1756 .It Li "rectangle-on" Ta "" Ta ""
1757 .It Li "rectangle-off" Ta "" Ta ""
1758 .It Li "rectangle-toggle" Ta "v" Ta "R"
1759 .It Li "refresh-from-pane" Ta "r" Ta "r"
1760 .It Li "scroll-down" Ta "C-e" Ta "C-Down"
1761 .It Li "scroll-down-and-cancel" Ta "" Ta ""
1762 .It Li "scroll-up" Ta "C-y" Ta "C-Up"
1763 .It Li "search-again" Ta "n" Ta "n"
1764 .It Li "search-backward <for>" Ta "?" Ta ""
1765 .It Li "search-backward-incremental <for>" Ta "" Ta "C-r"
1766 .It Li "search-backward-text <for>" Ta "" Ta ""
1767 .It Li "search-forward <for>" Ta "/" Ta ""
1768 .It Li "search-forward-incremental <for>" Ta "" Ta "C-s"
1769 .It Li "search-forward-text <for>" Ta "" Ta ""
1770 .It Li "search-reverse" Ta "N" Ta "N"
1771 .It Li "select-line" Ta "V" Ta ""
1772 .It Li "select-word" Ta "" Ta ""
1773 .It Li "set-mark" Ta "X" Ta "X"
1774 .It Li "start-of-line" Ta "0" Ta "C-a"
1775 .It Li "stop-selection" Ta "" Ta ""
1776 .It Li "top-line" Ta "H" Ta "M-R"
1779 The search commands come in several varieties:
1780 .Ql search-forward
1782 .Ql search-backward
1783 search for a regular expression;
1785 .Ql -text
1786 variants search for a plain text string rather than a regular expression;
1787 .Ql -incremental
1788 perform an incremental search and expect to be used with the
1789 .Fl i
1790 flag to the
1791 .Ic command-prompt
1792 command.
1793 .Ql search-again
1794 repeats the last search and
1795 .Ql search-reverse
1796 does the same but reverses the direction (forward becomes backward and backward
1797 becomes forward).
1799 Copy commands may take an optional buffer prefix argument which is used
1800 to generate the buffer name (the default is
1801 .Ql buffer
1802 so buffers are named
1803 .Ql buffer0 ,
1804 .Ql buffer1
1805 and so on).
1806 Pipe commands take a command argument which is the command to which the
1807 selected text is piped.
1808 .Ql copy-pipe
1809 variants also copy the selection.
1811 .Ql -and-cancel
1812 variants of some commands exit copy mode after they have completed (for copy
1813 commands) or when the cursor reaches the bottom (for scrolling commands).
1814 .Ql -no-clear
1815 variants do not clear the selection.
1817 The next and previous word keys skip over whitespace and treat consecutive
1818 runs of either word separators or other letters as words.
1819 Word separators can be customized with the
1820 .Em word-separators
1821 session option.
1822 Next word moves to the start of the next word, next word end to the end of the
1823 next word and previous word to the start of the previous word.
1824 The three next and previous space keys work similarly but use a space alone as
1825 the word separator.
1826 Setting
1827 .Em word-separators
1828 to the empty string makes next/previous word equivalent to next/previous space.
1830 The jump commands enable quick movement within a line.
1831 For instance, typing
1832 .Ql f
1833 followed by
1834 .Ql /
1835 will move the cursor to the next
1836 .Ql /
1837 character on the current line.
1839 .Ql \&;
1840 will then jump to the next occurrence.
1842 Commands in copy mode may be prefaced by an optional repeat count.
1843 With vi key bindings, a prefix is entered using the number keys; with
1844 emacs, the Alt (meta) key and a number begins prefix entry.
1846 The synopsis for the
1847 .Ic copy-mode
1848 command is:
1849 .Bl -tag -width Ds
1850 .It Xo Ic copy-mode
1851 .Op Fl eHMqu
1852 .Op Fl s Ar src-pane
1853 .Op Fl t Ar target-pane
1855 Enter copy mode.
1857 .Fl u
1858 option scrolls one page up.
1859 .Fl M
1860 begins a mouse drag (only valid if bound to a mouse key binding, see
1861 .Sx MOUSE SUPPORT ) .
1862 .Fl H
1863 hides the position indicator in the top right.
1864 .Fl q
1865 cancels copy mode and any other modes.
1866 .Fl s
1867 copies from
1868 .Ar src-pane
1869 instead of
1870 .Ar target-pane .
1872 .Fl e
1873 specifies that scrolling to the bottom of the history (to the visible screen)
1874 should exit copy mode.
1875 While in copy mode, pressing a key other than those used for scrolling will
1876 disable this behaviour.
1877 This is intended to allow fast scrolling through a pane's history, for
1878 example with:
1879 .Bd -literal -offset indent
1880 bind PageUp copy-mode -eu
1884 A number of preset arrangements of panes are available, these are called layouts.
1885 These may be selected with the
1886 .Ic select-layout
1887 command or cycled with
1888 .Ic next-layout
1889 (bound to
1890 .Ql Space
1891 by default); once a layout is chosen, panes within it may be moved and resized
1892 as normal.
1894 The following layouts are supported:
1895 .Bl -tag -width Ds
1896 .It Ic even-horizontal
1897 Panes are spread out evenly from left to right across the window.
1898 .It Ic even-vertical
1899 Panes are spread evenly from top to bottom.
1900 .It Ic main-horizontal
1901 A large (main) pane is shown at the top of the window and the remaining panes
1902 are spread from left to right in the leftover space at the bottom.
1903 Use the
1904 .Em main-pane-height
1905 window option to specify the height of the top pane.
1906 .It Ic main-vertical
1907 Similar to
1908 .Ic main-horizontal
1909 but the large pane is placed on the left and the others spread from top to
1910 bottom along the right.
1911 See the
1912 .Em main-pane-width
1913 window option.
1914 .It Ic tiled
1915 Panes are spread out as evenly as possible over the window in both rows and
1916 columns.
1919 In addition,
1920 .Ic select-layout
1921 may be used to apply a previously used layout - the
1922 .Ic list-windows
1923 command displays the layout of each window in a form suitable for use with
1924 .Ic select-layout .
1925 For example:
1926 .Bd -literal -offset indent
1927 $ tmux list-windows
1928 0: ksh [159x48]
1929     layout: bb62,159x48,0,0{79x48,0,0,79x48,80,0}
1930 $ tmux select-layout bb62,159x48,0,0{79x48,0,0,79x48,80,0}
1934 automatically adjusts the size of the layout for the current window size.
1935 Note that a layout cannot be applied to a window with more panes than that
1936 from which the layout was originally defined.
1938 Commands related to windows and panes are as follows:
1939 .Bl -tag -width Ds
1940 .Tg breakp
1941 .It Xo Ic break-pane
1942 .Op Fl abdP
1943 .Op Fl F Ar format
1944 .Op Fl n Ar window-name
1945 .Op Fl s Ar src-pane
1946 .Op Fl t Ar dst-window
1948 .D1 Pq alias: Ic breakp
1949 Break
1950 .Ar src-pane
1951 off from its containing window to make it the only pane in
1952 .Ar dst-window .
1953 With
1954 .Fl a
1956 .Fl b ,
1957 the window is moved to the next index after or before (existing windows are
1958 moved if necessary).
1960 .Fl d
1961 is given, the new window does not become the current window.
1963 .Fl P
1964 option prints information about the new window after it has been created.
1965 By default, it uses the format
1966 .Ql #{session_name}:#{window_index}.#{pane_index}
1967 but a different format may be specified with
1968 .Fl F .
1969 .Tg capturep
1970 .It Xo Ic capture-pane
1971 .Op Fl aepPqCJN
1972 .Op Fl b Ar buffer-name
1973 .Op Fl E Ar end-line
1974 .Op Fl S Ar start-line
1975 .Op Fl t Ar target-pane
1977 .D1 Pq alias: Ic capturep
1978 Capture the contents of a pane.
1980 .Fl p
1981 is given, the output goes to stdout, otherwise to the buffer specified with
1982 .Fl b
1983 or a new buffer if omitted.
1985 .Fl a
1986 is given, the alternate screen is used, and the history is not accessible.
1987 If no alternate screen exists, an error will be returned unless
1988 .Fl q
1989 is given.
1991 .Fl e
1992 is given, the output includes escape sequences for text and background
1993 attributes.
1994 .Fl C
1995 also escapes non-printable characters as octal \exxx.
1996 .Fl N
1997 preserves trailing spaces at each line's end and
1998 .Fl J
1999 preserves trailing spaces and joins any wrapped lines.
2000 .Fl P
2001 captures only any output that the pane has received that is the beginning of an
2002 as-yet incomplete escape sequence.
2004 .Fl S
2006 .Fl E
2007 specify the starting and ending line numbers, zero is the first line of the
2008 visible pane and negative numbers are lines in the history.
2009 .Ql -
2011 .Fl S
2012 is the start of the history and to
2013 .Fl E
2014 the end of the visible pane.
2015 The default is to capture only the visible contents of the pane.
2016 .It Xo
2017 .Ic choose-client
2018 .Op Fl NrZ
2019 .Op Fl F Ar format
2020 .Op Fl f Ar filter
2021 .Op Fl K Ar key-format
2022 .Op Fl O Ar sort-order
2023 .Op Fl t Ar target-pane
2024 .Op Ar template
2026 Put a pane into client mode, allowing a client to be selected interactively from
2027 a list.
2028 Each client is shown on one line.
2029 A shortcut key is shown on the left in brackets allowing for immediate choice,
2030 or the list may be navigated and an item chosen or otherwise manipulated using
2031 the keys below.
2032 .Fl Z
2033 zooms the pane.
2034 The following keys may be used in client mode:
2035 .Bl -column "Key" "Function" -offset indent
2036 .It Sy "Key" Ta Sy "Function"
2037 .It Li "Enter" Ta "Choose selected client"
2038 .It Li "Up" Ta "Select previous client"
2039 .It Li "Down" Ta "Select next client"
2040 .It Li "C-s" Ta "Search by name"
2041 .It Li "n" Ta "Repeat last search"
2042 .It Li "t" Ta "Toggle if client is tagged"
2043 .It Li "T" Ta "Tag no clients"
2044 .It Li "C-t" Ta "Tag all clients"
2045 .It Li "d" Ta "Detach selected client"
2046 .It Li "D" Ta "Detach tagged clients"
2047 .It Li "x" Ta "Detach and HUP selected client"
2048 .It Li "X" Ta "Detach and HUP tagged clients"
2049 .It Li "z" Ta "Suspend selected client"
2050 .It Li "Z" Ta "Suspend tagged clients"
2051 .It Li "f" Ta "Enter a format to filter items"
2052 .It Li "O" Ta "Change sort field"
2053 .It Li "r" Ta "Reverse sort order"
2054 .It Li "v" Ta "Toggle preview"
2055 .It Li "q" Ta "Exit mode"
2058 After a client is chosen,
2059 .Ql %%
2060 is replaced by the client name in
2061 .Ar template
2062 and the result executed as a command.
2064 .Ar template
2065 is not given, "detach-client -t '%%'" is used.
2067 .Fl O
2068 specifies the initial sort field: one of
2069 .Ql name ,
2070 .Ql size ,
2071 .Ql creation ,
2073 .Ql activity .
2074 .Fl r
2075 reverses the sort order.
2076 .Fl f
2077 specifies an initial filter: the filter is a format - if it evaluates to zero,
2078 the item in the list is not shown, otherwise it is shown.
2079 If a filter would lead to an empty list, it is ignored.
2080 .Fl F
2081 specifies the format for each item in the list and
2082 .Fl K
2083 a format for each shortcut key; both are evaluated once for each line.
2084 .Fl N
2085 starts without the preview.
2086 This command works only if at least one client is attached.
2087 .It Xo
2088 .Ic choose-tree
2089 .Op Fl GNrswZ
2090 .Op Fl F Ar format
2091 .Op Fl f Ar filter
2092 .Op Fl K Ar key-format
2093 .Op Fl O Ar sort-order
2094 .Op Fl t Ar target-pane
2095 .Op Ar template
2097 Put a pane into tree mode, where a session, window or pane may be chosen
2098 interactively from a tree.
2099 Each session, window or pane is shown on one line.
2100 A shortcut key is shown on the left in brackets allowing for immediate choice,
2101 or the tree may be navigated and an item chosen or otherwise manipulated using
2102 the keys below.
2103 .Fl s
2104 starts with sessions collapsed and
2105 .Fl w
2106 with windows collapsed.
2107 .Fl Z
2108 zooms the pane.
2109 The following keys may be used in tree mode:
2110 .Bl -column "Key" "Function" -offset indent
2111 .It Sy "Key" Ta Sy "Function"
2112 .It Li "Enter" Ta "Choose selected item"
2113 .It Li "Up" Ta "Select previous item"
2114 .It Li "Down" Ta "Select next item"
2115 .It Li "+" Ta "Expand selected item"
2116 .It Li "-" Ta "Collapse selected item"
2117 .It Li "M-+" Ta "Expand all items"
2118 .It Li "M--" Ta "Collapse all items"
2119 .It Li "x" Ta "Kill selected item"
2120 .It Li "X" Ta "Kill tagged items"
2121 .It Li "<" Ta "Scroll list of previews left"
2122 .It Li ">" Ta "Scroll list of previews right"
2123 .It Li "C-s" Ta "Search by name"
2124 .It Li "m" Ta "Set the marked pane"
2125 .It Li "M" Ta "Clear the marked pane"
2126 .It Li "n" Ta "Repeat last search"
2127 .It Li "t" Ta "Toggle if item is tagged"
2128 .It Li "T" Ta "Tag no items"
2129 .It Li "C-t" Ta "Tag all items"
2130 .It Li "\&:" Ta "Run a command for each tagged item"
2131 .It Li "f" Ta "Enter a format to filter items"
2132 .It Li "H" Ta "Jump to the starting pane"
2133 .It Li "O" Ta "Change sort field"
2134 .It Li "r" Ta "Reverse sort order"
2135 .It Li "v" Ta "Toggle preview"
2136 .It Li "q" Ta "Exit mode"
2139 After a session, window or pane is chosen, the first instance of
2140 .Ql %%
2141 and all instances of
2142 .Ql %1
2143 are replaced by the target in
2144 .Ar template
2145 and the result executed as a command.
2147 .Ar template
2148 is not given, "switch-client -t '%%'" is used.
2150 .Fl O
2151 specifies the initial sort field: one of
2152 .Ql index ,
2153 .Ql name ,
2155 .Ql time .
2156 .Fl r
2157 reverses the sort order.
2158 .Fl f
2159 specifies an initial filter: the filter is a format - if it evaluates to zero,
2160 the item in the list is not shown, otherwise it is shown.
2161 If a filter would lead to an empty list, it is ignored.
2162 .Fl F
2163 specifies the format for each item in the tree and
2164 .Fl K
2165 a format for each shortcut key; both are evaluated once for each line.
2166 .Fl N
2167 starts without the preview.
2168 .Fl G
2169 includes all sessions in any session groups in the tree rather than only the
2170 first.
2171 This command works only if at least one client is attached.
2172 .It Xo
2173 .Ic customize-mode
2174 .Op Fl NZ
2175 .Op Fl F Ar format
2176 .Op Fl f Ar filter
2177 .Op Fl t Ar target-pane
2178 .Op Ar template
2180 Put a pane into customize mode, where options and key bindings may be browsed
2181 and modified from a list.
2182 Option values in the list are shown for the active pane in the current window.
2183 .Fl Z
2184 zooms the pane.
2185 The following keys may be used in customize mode:
2186 .Bl -column "Key" "Function" -offset indent
2187 .It Sy "Key" Ta Sy "Function"
2188 .It Li "Enter" Ta "Set pane, window, session or global option value"
2189 .It Li "Up" Ta "Select previous item"
2190 .It Li "Down" Ta "Select next item"
2191 .It Li "+" Ta "Expand selected item"
2192 .It Li "-" Ta "Collapse selected item"
2193 .It Li "M-+" Ta "Expand all items"
2194 .It Li "M--" Ta "Collapse all items"
2195 .It Li "s" Ta "Set option value or key attribute"
2196 .It Li "S" Ta "Set global option value"
2197 .It Li "w" Ta "Set window option value, if option is for pane and window"
2198 .It Li "d" Ta "Set an option or key to the default"
2199 .It Li "D" Ta "Set tagged options and tagged keys to the default"
2200 .It Li "u" Ta "Unset an option (set to default value if global) or unbind a key"
2201 .It Li "U" Ta "Unset tagged options and unbind tagged keys"
2202 .It Li "C-s" Ta "Search by name"
2203 .It Li "n" Ta "Repeat last search"
2204 .It Li "t" Ta "Toggle if item is tagged"
2205 .It Li "T" Ta "Tag no items"
2206 .It Li "C-t" Ta "Tag all items"
2207 .It Li "f" Ta "Enter a format to filter items"
2208 .It Li "v" Ta "Toggle option information"
2209 .It Li "q" Ta "Exit mode"
2212 .Fl f
2213 specifies an initial filter: the filter is a format - if it evaluates to zero,
2214 the item in the list is not shown, otherwise it is shown.
2215 If a filter would lead to an empty list, it is ignored.
2216 .Fl F
2217 specifies the format for each item in the tree.
2218 .Fl N
2219 starts without the option information.
2220 This command works only if at least one client is attached.
2221 .It Xo
2222 .Tg displayp
2223 .Ic display-panes
2224 .Op Fl bN
2225 .Op Fl d Ar duration
2226 .Op Fl t Ar target-client
2227 .Op Ar template
2229 .D1 Pq alias: Ic displayp
2230 Display a visible indicator of each pane shown by
2231 .Ar target-client .
2232 See the
2233 .Ic display-panes-colour
2235 .Ic display-panes-active-colour
2236 session options.
2237 The indicator is closed when a key is pressed (unless
2238 .Fl N
2239 is given) or
2240 .Ar duration
2241 milliseconds have passed.
2243 .Fl d
2244 is not given,
2245 .Ic display-panes-time
2246 is used.
2247 A duration of zero means the indicator stays until a key is pressed.
2248 While the indicator is on screen, a pane may be chosen with the
2249 .Ql 0
2251 .Ql 9
2252 keys, which will cause
2253 .Ar template
2254 to be executed as a command with
2255 .Ql %%
2256 substituted by the pane ID.
2257 The default
2258 .Ar template
2259 is "select-pane -t '%%'".
2260 With
2261 .Fl b ,
2262 other commands are not blocked from running until the indicator is closed.
2263 .Tg findw
2264 .It Xo Ic find-window
2265 .Op Fl iCNrTZ
2266 .Op Fl t Ar target-pane
2267 .Ar match-string
2269 .D1 Pq alias: Ic findw
2270 Search for a
2271 .Xr fnmatch 3
2272 pattern or, with
2273 .Fl r ,
2274 regular expression
2275 .Ar match-string
2276 in window names, titles, and visible content (but not history).
2277 The flags control matching behavior:
2278 .Fl C
2279 matches only visible window contents,
2280 .Fl N
2281 matches only the window name and
2282 .Fl T
2283 matches only the window title.
2284 .Fl i
2285 makes the search ignore case.
2286 The default is
2287 .Fl CNT .
2288 .Fl Z
2289 zooms the pane.
2291 This command works only if at least one client is attached.
2292 .Tg joinp
2293 .It Xo Ic join-pane
2294 .Op Fl bdfhv
2295 .Op Fl l Ar size
2296 .Op Fl s Ar src-pane
2297 .Op Fl t Ar dst-pane
2299 .D1 Pq alias: Ic joinp
2300 Like
2301 .Ic split-window ,
2302 but instead of splitting
2303 .Ar dst-pane
2304 and creating a new pane, split it and move
2305 .Ar src-pane
2306 into the space.
2307 This can be used to reverse
2308 .Ic break-pane .
2310 .Fl b
2311 option causes
2312 .Ar src-pane
2313 to be joined to left of or above
2314 .Ar dst-pane .
2317 .Fl s
2318 is omitted and a marked pane is present (see
2319 .Ic select-pane
2320 .Fl m ) ,
2321 the marked pane is used rather than the current pane.
2322 .Tg killp
2323 .It Xo Ic kill-pane
2324 .Op Fl a
2325 .Op Fl t Ar target-pane
2327 .D1 Pq alias: Ic killp
2328 Destroy the given pane.
2329 If no panes remain in the containing window, it is also destroyed.
2331 .Fl a
2332 option kills all but the pane given with
2333 .Fl t .
2334 .Tg killw
2335 .It Xo Ic kill-window
2336 .Op Fl a
2337 .Op Fl t Ar target-window
2339 .D1 Pq alias: Ic killw
2340 Kill the current window or the window at
2341 .Ar target-window ,
2342 removing it from any sessions to which it is linked.
2344 .Fl a
2345 option kills all but the window given with
2346 .Fl t .
2347 .Tg lastp
2348 .It Xo Ic last-pane
2349 .Op Fl deZ
2350 .Op Fl t Ar target-window
2352 .D1 Pq alias: Ic lastp
2353 Select the last (previously selected) pane.
2354 .Fl Z
2355 keeps the window zoomed if it was zoomed.
2356 .Fl e
2357 enables or
2358 .Fl d
2359 disables input to the pane.
2360 .Tg last
2361 .It Ic last-window Op Fl t Ar target-session
2362 .D1 Pq alias: Ic last
2363 Select the last (previously selected) window.
2364 If no
2365 .Ar target-session
2366 is specified, select the last window of the current session.
2367 .Tg link
2368 .It Xo Ic link-window
2369 .Op Fl abdk
2370 .Op Fl s Ar src-window
2371 .Op Fl t Ar dst-window
2373 .D1 Pq alias: Ic linkw
2374 Link the window at
2375 .Ar src-window
2376 to the specified
2377 .Ar dst-window .
2379 .Ar dst-window
2380 is specified and no such window exists, the
2381 .Ar src-window
2382 is linked there.
2383 With
2384 .Fl a
2386 .Fl b
2387 the window is moved to the next index after or before
2388 .Ar dst-window
2389 (existing windows are moved if necessary).
2391 .Fl k
2392 is given and
2393 .Ar dst-window
2394 exists, it is killed, otherwise an error is generated.
2396 .Fl d
2397 is given, the newly linked window is not selected.
2398 .Tg lsp
2399 .It Xo Ic list-panes
2400 .Op Fl as
2401 .Op Fl F Ar format
2402 .Op Fl f Ar filter
2403 .Op Fl t Ar target
2405 .D1 Pq alias: Ic lsp
2407 .Fl a
2408 is given,
2409 .Ar target
2410 is ignored and all panes on the server are listed.
2412 .Fl s
2413 is given,
2414 .Ar target
2415 is a session (or the current session).
2416 If neither is given,
2417 .Ar target
2418 is a window (or the current window).
2419 .Fl F
2420 specifies the format of each line and
2421 .Fl f
2422 a filter.
2423 Only panes for which the filter is true are shown.
2424 See the
2425 .Sx FORMATS
2426 section.
2427 .Tg lsw
2428 .It Xo Ic list-windows
2429 .Op Fl a
2430 .Op Fl F Ar format
2431 .Op Fl f Ar filter
2432 .Op Fl t Ar target-session
2434 .D1 Pq alias: Ic lsw
2436 .Fl a
2437 is given, list all windows on the server.
2438 Otherwise, list windows in the current session or in
2439 .Ar target-session .
2440 .Fl F
2441 specifies the format of each line and
2442 .Fl f
2443 a filter.
2444 Only windows for which the filter is true are shown.
2445 See the
2446 .Sx FORMATS
2447 section.
2448 .Tg movep
2449 .It Xo Ic move-pane
2450 .Op Fl bdfhv
2451 .Op Fl l Ar size
2452 .Op Fl s Ar src-pane
2453 .Op Fl t Ar dst-pane
2455 .D1 Pq alias: Ic movep
2456 Does the same as
2457 .Ic join-pane .
2458 .Tg movew
2459 .It Xo Ic move-window
2460 .Op Fl abrdk
2461 .Op Fl s Ar src-window
2462 .Op Fl t Ar dst-window
2464 .D1 Pq alias: Ic movew
2465 This is similar to
2466 .Ic link-window ,
2467 except the window at
2468 .Ar src-window
2469 is moved to
2470 .Ar dst-window .
2471 With
2472 .Fl r ,
2473 all windows in the session are renumbered in sequential order, respecting
2475 .Ic base-index
2476 option.
2477 .Tg neww
2478 .It Xo Ic new-window
2479 .Op Fl abdkPS
2480 .Op Fl c Ar start-directory
2481 .Op Fl e Ar environment
2482 .Op Fl F Ar format
2483 .Op Fl n Ar window-name
2484 .Op Fl t Ar target-window
2485 .Op Ar shell-command
2487 .D1 Pq alias: Ic neww
2488 Create a new window.
2489 With
2490 .Fl a
2492 .Fl b ,
2493 the new window is inserted at the next index after or before the specified
2494 .Ar target-window ,
2495 moving windows up if necessary;
2496 otherwise
2497 .Ar target-window
2498 is the new window location.
2501 .Fl d
2502 is given, the session does not make the new window the current window.
2503 .Ar target-window
2504 represents the window to be created; if the target already exists an error is
2505 shown, unless the
2506 .Fl k
2507 flag is used, in which case it is destroyed.
2509 .Fl S
2510 is given and a window named
2511 .Ar window-name
2512 already exists, it is selected (unless
2513 .Fl d
2514 is also given in which case the command does nothing).
2516 .Ar shell-command
2517 is the command to execute.
2519 .Ar shell-command
2520 is not specified, the value of the
2521 .Ic default-command
2522 option is used.
2523 .Fl c
2524 specifies the working directory in which the new window is created.
2526 When the shell command completes, the window closes.
2527 See the
2528 .Ic remain-on-exit
2529 option to change this behaviour.
2531 .Fl e
2532 takes the form
2533 .Ql VARIABLE=value
2534 and sets an environment variable for the newly created window; it may be
2535 specified multiple times.
2538 .Ev TERM
2539 environment variable must be set to
2540 .Ql screen
2542 .Ql tmux
2543 for all programs running
2544 .Em inside
2545 .Nm .
2546 New windows will automatically have
2547 .Ql TERM=screen
2548 added to their environment, but care must be taken not to reset this in shell
2549 start-up files or by the
2550 .Fl e
2551 option.
2554 .Fl P
2555 option prints information about the new window after it has been created.
2556 By default, it uses the format
2557 .Ql #{session_name}:#{window_index}
2558 but a different format may be specified with
2559 .Fl F .
2560 .Tg nextl
2561 .It Ic next-layout Op Fl t Ar target-window
2562 .D1 Pq alias: Ic nextl
2563 Move a window to the next layout and rearrange the panes to fit.
2564 .Tg next
2565 .It Xo Ic next-window
2566 .Op Fl a
2567 .Op Fl t Ar target-session
2569 .D1 Pq alias: Ic next
2570 Move to the next window in the session.
2572 .Fl a
2573 is used, move to the next window with an alert.
2574 .Tg pipep
2575 .It Xo Ic pipe-pane
2576 .Op Fl IOo
2577 .Op Fl t Ar target-pane
2578 .Op Ar shell-command
2580 .D1 Pq alias: Ic pipep
2581 Pipe output sent by the program in
2582 .Ar target-pane
2583 to a shell command or vice versa.
2584 A pane may only be connected to one command at a time, any existing pipe is
2585 closed before
2586 .Ar shell-command
2587 is executed.
2589 .Ar shell-command
2590 string may contain the special character sequences supported by the
2591 .Ic status-left
2592 option.
2593 If no
2594 .Ar shell-command
2595 is given, the current pipe (if any) is closed.
2597 .Fl I
2599 .Fl O
2600 specify which of the
2601 .Ar shell-command
2602 output streams are connected to the pane:
2603 with
2604 .Fl I
2605 stdout is connected (so anything
2606 .Ar shell-command
2607 prints is written to the pane as if it were typed);
2608 with
2609 .Fl O
2610 stdin is connected (so any output in the pane is piped to
2611 .Ar shell-command ) .
2612 Both may be used together and if neither are specified,
2613 .Fl O
2614 is used.
2617 .Fl o
2618 option only opens a new pipe if no previous pipe exists, allowing a pipe to
2619 be toggled with a single key, for example:
2620 .Bd -literal -offset indent
2621 bind-key C-p pipe-pane -o 'cat >>~/output.#I-#P'
2623 .Tg prevl
2624 .It Xo Ic previous-layout
2625 .Op Fl t Ar target-window
2627 .D1 Pq alias: Ic prevl
2628 Move to the previous layout in the session.
2629 .Tg prev
2630 .It Xo Ic previous-window
2631 .Op Fl a
2632 .Op Fl t Ar target-session
2634 .D1 Pq alias: Ic prev
2635 Move to the previous window in the session.
2636 With
2637 .Fl a ,
2638 move to the previous window with an alert.
2639 .Tg renamew
2640 .It Xo Ic rename-window
2641 .Op Fl t Ar target-window
2642 .Ar new-name
2644 .D1 Pq alias: Ic renamew
2645 Rename the current window, or the window at
2646 .Ar target-window
2647 if specified, to
2648 .Ar new-name .
2649 .Tg resizep
2650 .It Xo Ic resize-pane
2651 .Op Fl DLMRTUZ
2652 .Op Fl t Ar target-pane
2653 .Op Fl x Ar width
2654 .Op Fl y Ar height
2655 .Op Ar adjustment
2657 .D1 Pq alias: Ic resizep
2658 Resize a pane, up, down, left or right by
2659 .Ar adjustment
2660 with
2661 .Fl U ,
2662 .Fl D ,
2663 .Fl L
2665 .Fl R ,
2667 to an absolute size
2668 with
2669 .Fl x
2671 .Fl y .
2673 .Ar adjustment
2674 is given in lines or columns (the default is 1);
2675 .Fl x
2677 .Fl y
2678 may be a given as a number of lines or columns or followed by
2679 .Ql %
2680 for a percentage of the window size (for example
2681 .Ql -x 10% ) .
2682 With
2683 .Fl Z ,
2684 the active pane is toggled between zoomed (occupying the whole of the window)
2685 and unzoomed (its normal position in the layout).
2687 .Fl M
2688 begins mouse resizing (only valid if bound to a mouse key binding, see
2689 .Sx MOUSE SUPPORT ) .
2691 .Fl T
2692 trims all lines below the current cursor position and moves lines out of the
2693 history to replace them.
2694 .Tg resizew
2695 .It Xo Ic resize-window
2696 .Op Fl aADLRU
2697 .Op Fl t Ar target-window
2698 .Op Fl x Ar width
2699 .Op Fl y Ar height
2700 .Op Ar adjustment
2702 .D1 Pq alias: Ic resizew
2703 Resize a window, up, down, left or right by
2704 .Ar adjustment
2705 with
2706 .Fl U ,
2707 .Fl D ,
2708 .Fl L
2710 .Fl R ,
2712 to an absolute size
2713 with
2714 .Fl x
2716 .Fl y .
2718 .Ar adjustment
2719 is given in lines or cells (the default is 1).
2720 .Fl A
2721 sets the size of the largest session containing the window;
2722 .Fl a
2723 the size of the smallest.
2724 This command will automatically set
2725 .Ic window-size
2726 to manual in the window options.
2727 .Tg respawnp
2728 .It Xo Ic respawn-pane
2729 .Op Fl k
2730 .Op Fl c Ar start-directory
2731 .Op Fl e Ar environment
2732 .Op Fl t Ar target-pane
2733 .Op Ar shell-command
2735 .D1 Pq alias: Ic respawnp
2736 Reactivate a pane in which the command has exited (see the
2737 .Ic remain-on-exit
2738 window option).
2740 .Ar shell-command
2741 is not given, the command used when the pane was created or last respawned is
2742 executed.
2743 The pane must be already inactive, unless
2744 .Fl k
2745 is given, in which case any existing command is killed.
2746 .Fl c
2747 specifies a new working directory for the pane.
2749 .Fl e
2750 option has the same meaning as for the
2751 .Ic new-window
2752 command.
2753 .Tg respawnw
2754 .It Xo Ic respawn-window
2755 .Op Fl k
2756 .Op Fl c Ar start-directory
2757 .Op Fl e Ar environment
2758 .Op Fl t Ar target-window
2759 .Op Ar shell-command
2761 .D1 Pq alias: Ic respawnw
2762 Reactivate a window in which the command has exited (see the
2763 .Ic remain-on-exit
2764 window option).
2766 .Ar shell-command
2767 is not given, the command used when the window was created or last respawned is
2768 executed.
2769 The window must be already inactive, unless
2770 .Fl k
2771 is given, in which case any existing command is killed.
2772 .Fl c
2773 specifies a new working directory for the window.
2775 .Fl e
2776 option has the same meaning as for the
2777 .Ic new-window
2778 command.
2779 .Tg rotatew
2780 .It Xo Ic rotate-window
2781 .Op Fl DUZ
2782 .Op Fl t Ar target-window
2784 .D1 Pq alias: Ic rotatew
2785 Rotate the positions of the panes within a window, either upward (numerically
2786 lower) with
2787 .Fl U
2788 or downward (numerically higher).
2789 .Fl Z
2790 keeps the window zoomed if it was zoomed.
2791 .Tg selectl
2792 .It Xo Ic select-layout
2793 .Op Fl Enop
2794 .Op Fl t Ar target-pane
2795 .Op Ar layout-name
2797 .D1 Pq alias: Ic selectl
2798 Choose a specific layout for a window.
2800 .Ar layout-name
2801 is not given, the last preset layout used (if any) is reapplied.
2802 .Fl n
2804 .Fl p
2805 are equivalent to the
2806 .Ic next-layout
2808 .Ic previous-layout
2809 commands.
2810 .Fl o
2811 applies the last set layout if possible (undoes the most recent layout change).
2812 .Fl E
2813 spreads the current pane and any panes next to it out evenly.
2814 .Tg selectp
2815 .It Xo Ic select-pane
2816 .Op Fl DdeLlMmRUZ
2817 .Op Fl T Ar title
2818 .Op Fl t Ar target-pane
2820 .D1 Pq alias: Ic selectp
2821 Make pane
2822 .Ar target-pane
2823 the active pane in its window.
2824 If one of
2825 .Fl D ,
2826 .Fl L ,
2827 .Fl R ,
2829 .Fl U
2830 is used, respectively the pane below, to the left, to the right, or above the
2831 target pane is used.
2832 .Fl Z
2833 keeps the window zoomed if it was zoomed.
2834 .Fl l
2835 is the same as using the
2836 .Ic last-pane
2837 command.
2838 .Fl e
2839 enables or
2840 .Fl d
2841 disables input to the pane.
2842 .Fl T
2843 sets the pane title.
2845 .Fl m
2847 .Fl M
2848 are used to set and clear the
2849 .Em marked pane .
2850 There is one marked pane at a time, setting a new marked pane clears the last.
2851 The marked pane is the default target for
2852 .Fl s
2854 .Ic join-pane ,
2855 .Ic move-pane ,
2856 .Ic swap-pane
2858 .Ic swap-window .
2859 .Tg selectw
2860 .It Xo Ic select-window
2861 .Op Fl lnpT
2862 .Op Fl t Ar target-window
2864 .D1 Pq alias: Ic selectw
2865 Select the window at
2866 .Ar target-window .
2867 .Fl l ,
2868 .Fl n
2870 .Fl p
2871 are equivalent to the
2872 .Ic last-window ,
2873 .Ic next-window
2875 .Ic previous-window
2876 commands.
2878 .Fl T
2879 is given and the selected window is already the current window,
2880 the command behaves like
2881 .Ic last-window .
2882 .Tg splitw
2883 .It Xo Ic split-window
2884 .Op Fl bdfhIvPZ
2885 .Op Fl c Ar start-directory
2886 .Op Fl e Ar environment
2887 .Op Fl l Ar size
2888 .Op Fl t Ar target-pane
2889 .Op Ar shell-command
2890 .Op Fl F Ar format
2892 .D1 Pq alias: Ic splitw
2893 Create a new pane by splitting
2894 .Ar target-pane :
2895 .Fl h
2896 does a horizontal split and
2897 .Fl v
2898 a vertical split; if neither is specified,
2899 .Fl v
2900 is assumed.
2902 .Fl l
2903 option specifies the size of the new pane in lines (for vertical split) or in
2904 columns (for horizontal split);
2905 .Ar size
2906 may be followed by
2907 .Ql %
2908 to specify a percentage of the available space.
2910 .Fl b
2911 option causes the new pane to be created to the left of or above
2912 .Ar target-pane .
2914 .Fl f
2915 option creates a new pane spanning the full window height (with
2916 .Fl h )
2917 or full window width (with
2918 .Fl v ) ,
2919 instead of splitting the active pane.
2920 .Fl Z
2921 zooms if the window is not zoomed, or keeps it zoomed if already zoomed.
2923 An empty
2924 .Ar shell-command
2925 ('') will create a pane with no command running in it.
2926 Output can be sent to such a pane with the
2927 .Ic display-message
2928 command.
2930 .Fl I
2931 flag (if
2932 .Ar shell-command
2933 is not specified or empty)
2934 will create an empty pane and forward any output from stdin to it.
2935 For example:
2936 .Bd -literal -offset indent
2937 $ make 2>&1|tmux splitw -dI &
2940 All other options have the same meaning as for the
2941 .Ic new-window
2942 command.
2943 .Tg swapp
2944 .It Xo Ic swap-pane
2945 .Op Fl dDUZ
2946 .Op Fl s Ar src-pane
2947 .Op Fl t Ar dst-pane
2949 .D1 Pq alias: Ic swapp
2950 Swap two panes.
2952 .Fl U
2953 is used and no source pane is specified with
2954 .Fl s ,
2955 .Ar dst-pane
2956 is swapped with the previous pane (before it numerically);
2957 .Fl D
2958 swaps with the next pane (after it numerically).
2959 .Fl d
2960 instructs
2962 not to change the active pane and
2963 .Fl Z
2964 keeps the window zoomed if it was zoomed.
2967 .Fl s
2968 is omitted and a marked pane is present (see
2969 .Ic select-pane
2970 .Fl m ) ,
2971 the marked pane is used rather than the current pane.
2972 .Tg swapw
2973 .It Xo Ic swap-window
2974 .Op Fl d
2975 .Op Fl s Ar src-window
2976 .Op Fl t Ar dst-window
2978 .D1 Pq alias: Ic swapw
2979 This is similar to
2980 .Ic link-window ,
2981 except the source and destination windows are swapped.
2982 It is an error if no window exists at
2983 .Ar src-window .
2985 .Fl d
2986 is given, the new window does not become the current window.
2989 .Fl s
2990 is omitted and a marked pane is present (see
2991 .Ic select-pane
2992 .Fl m ) ,
2993 the window containing the marked pane is used rather than the current window.
2994 .Tg unlinkw
2995 .It Xo Ic unlink-window
2996 .Op Fl k
2997 .Op Fl t Ar target-window
2999 .D1 Pq alias: Ic unlinkw
3000 Unlink
3001 .Ar target-window .
3002 Unless
3003 .Fl k
3004 is given, a window may be unlinked only if it is linked to multiple sessions -
3005 windows may not be linked to no sessions;
3007 .Fl k
3008 is specified and the window is linked to only one session, it is unlinked and
3009 destroyed.
3011 .Sh KEY BINDINGS
3013 allows a command to be bound to most keys, with or without a prefix key.
3014 When specifying keys, most represent themselves (for example
3015 .Ql A
3017 .Ql Z ) .
3018 Ctrl keys may be prefixed with
3019 .Ql C-
3021 .Ql ^ ,
3022 Shift keys with
3023 .Ql S-
3024 and Alt (meta) with
3025 .Ql M- .
3026 In addition, the following special key names are accepted:
3027 .Em Up ,
3028 .Em Down ,
3029 .Em Left ,
3030 .Em Right ,
3031 .Em BSpace ,
3032 .Em BTab ,
3033 .Em DC
3034 (Delete),
3035 .Em End ,
3036 .Em Enter ,
3037 .Em Escape ,
3038 .Em F1
3040 .Em F12 ,
3041 .Em Home ,
3042 .Em IC
3043 (Insert),
3044 .Em NPage/PageDown/PgDn ,
3045 .Em PPage/PageUp/PgUp ,
3046 .Em Space ,
3048 .Em Tab .
3049 Note that to bind the
3050 .Ql \&"
3052 .Ql '
3053 keys, quotation marks are necessary, for example:
3054 .Bd -literal -offset indent
3055 bind-key '"' split-window
3056 bind-key "'" new-window
3059 A command bound to the
3060 .Em Any
3061 key will execute for all keys which do not have a more specific binding.
3063 Commands related to key bindings are as follows:
3064 .Bl -tag -width Ds
3065 .Tg bind
3066 .It Xo Ic bind-key
3067 .Op Fl nr
3068 .Op Fl N Ar note
3069 .Op Fl T Ar key-table
3070 .Ar key command Op Ar arguments
3072 .D1 Pq alias: Ic bind
3073 Bind key
3074 .Ar key
3076 .Ar command .
3077 Keys are bound in a key table.
3078 By default (without -T), the key is bound in
3080 .Em prefix
3081 key table.
3082 This table is used for keys pressed after the prefix key (for example,
3083 by default
3084 .Ql c
3085 is bound to
3086 .Ic new-window
3087 in the
3088 .Em prefix
3089 table, so
3090 .Ql C-b c
3091 creates a new window).
3093 .Em root
3094 table is used for keys pressed without the prefix key: binding
3095 .Ql c
3097 .Ic new-window
3098 in the
3099 .Em root
3100 table (not recommended) means a plain
3101 .Ql c
3102 will create a new window.
3103 .Fl n
3104 is an alias
3106 .Fl T Ar root .
3107 Keys may also be bound in custom key tables and the
3108 .Ic switch-client
3109 .Fl T
3110 command used to switch to them from a key binding.
3112 .Fl r
3113 flag indicates this key may repeat, see the
3114 .Ic repeat-time
3115 option.
3116 .Fl N
3117 attaches a note to the key (shown with
3118 .Ic list-keys
3119 .Fl N ) .
3121 To view the default bindings and possible commands, see the
3122 .Ic list-keys
3123 command.
3124 .Tg lsk
3125 .It Xo Ic list-keys
3126 .Op Fl 1aN
3127 .Op Fl P Ar prefix-string Fl T Ar key-table
3128 .Op Ar key
3130 .D1 Pq alias: Ic lsk
3131 List key bindings.
3132 There are two forms: the default lists keys as
3133 .Ic bind-key
3134 commands;
3135 .Fl N
3136 lists only keys with attached notes and shows only the key and note for each
3137 key.
3139 With the default form, all key tables are listed by default.
3140 .Fl T
3141 lists only keys in
3142 .Ar key-table .
3144 With the
3145 .Fl N
3146 form, only keys in the
3147 .Em root
3149 .Em prefix
3150 key tables are listed by default;
3151 .Fl T
3152 also lists only keys in
3153 .Ar key-table .
3154 .Fl P
3155 specifies a prefix to print before each key and
3156 .Fl 1
3157 lists only the first matching key.
3158 .Fl a
3159 lists the command for keys that do not have a note rather than skipping them.
3160 .Tg send
3161 .It Xo Ic send-keys
3162 .Op Fl FHlMRX
3163 .Op Fl N Ar repeat-count
3164 .Op Fl t Ar target-pane
3165 .Ar key Ar ...
3167 .D1 Pq alias: Ic send
3168 Send a key or keys to a window.
3169 Each argument
3170 .Ar key
3171 is the name of the key (such as
3172 .Ql C-a
3174 .Ql NPage )
3175 to send; if the string is not recognised as a key, it is sent as a series of
3176 characters.
3177 All arguments are sent sequentially from first to last.
3178 If no keys are given and the command is bound to a key, then that key is used.
3181 .Fl l
3182 flag disables key name lookup and processes the keys as literal UTF-8
3183 characters.
3185 .Fl H
3186 flag expects each key to be a hexadecimal number for an ASCII character.
3189 .Fl R
3190 flag causes the terminal state to be reset.
3192 .Fl M
3193 passes through a mouse event (only valid if bound to a mouse key binding, see
3194 .Sx MOUSE SUPPORT ) .
3196 .Fl X
3197 is used to send a command into copy mode - see
3199 .Sx WINDOWS AND PANES
3200 section.
3201 .Fl N
3202 specifies a repeat count and
3203 .Fl F
3204 expands formats in arguments where appropriate.
3205 .It Xo Ic send-prefix
3206 .Op Fl 2
3207 .Op Fl t Ar target-pane
3209 Send the prefix key, or with
3210 .Fl 2
3211 the secondary prefix key, to a window as if it was pressed.
3212 .Tg unbind
3213 .It Xo Ic unbind-key
3214 .Op Fl anq
3215 .Op Fl T Ar key-table
3216 .Ar key
3218 .D1 Pq alias: Ic unbind
3219 Unbind the command bound to
3220 .Ar key .
3221 .Fl n
3223 .Fl T
3224 are the same as for
3225 .Ic bind-key .
3227 .Fl a
3228 is present, all key bindings are removed.
3230 .Fl q
3231 option prevents errors being returned.
3233 .Sh OPTIONS
3234 The appearance and behaviour of
3236 may be modified by changing the value of various options.
3237 There are four types of option:
3238 .Em server options ,
3239 .Em session options ,
3240 .Em window options ,
3242 .Em pane options .
3246 server has a set of global server options which do not apply to any particular
3247 window or session or pane.
3248 These are altered with the
3249 .Ic set-option
3250 .Fl s
3251 command, or displayed with the
3252 .Ic show-options
3253 .Fl s
3254 command.
3256 In addition, each individual session may have a set of session options, and
3257 there is a separate set of global session options.
3258 Sessions which do not have a particular option configured inherit the value
3259 from the global session options.
3260 Session options are set or unset with the
3261 .Ic set-option
3262 command and may be listed with the
3263 .Ic show-options
3264 command.
3265 The available server and session options are listed under the
3266 .Ic set-option
3267 command.
3269 Similarly, a set of window options is attached to each window and a set of pane
3270 options to each pane.
3271 Pane options inherit from window options.
3272 This means any pane option may be set as a window option to apply the option to
3273 all panes in the window without the option set, for example these commands will
3274 set the background colour to red for all panes except pane 0:
3275 .Bd -literal -offset indent
3276 set -w window-style bg=red
3277 set -pt:.0 window-style bg=blue
3280 There is also a set of global window options from which any unset window or
3281 pane options are inherited.
3282 Window and pane options are altered with
3283 .Ic set-option
3284 .Fl w
3286 .Fl p
3287 commands and displayed with
3288 .Ic show-option
3289 .Fl w
3291 .Fl p .
3294 also supports user options which are prefixed with a
3295 .Ql \&@ .
3296 User options may have any name, so long as they are prefixed with
3297 .Ql \&@ ,
3298 and be set to any string.
3299 For example:
3300 .Bd -literal -offset indent
3301 $ tmux set -wq @foo "abc123"
3302 $ tmux show -wv @foo
3303 abc123
3306 Commands which set options are as follows:
3307 .Bl -tag -width Ds
3308 .Tg set
3309 .It Xo Ic set-option
3310 .Op Fl aFgopqsuUw
3311 .Op Fl t Ar target-pane
3312 .Ar option Ar value
3314 .D1 Pq alias: Ic set
3315 Set a pane option with
3316 .Fl p ,
3317 a window option with
3318 .Fl w ,
3319 a server option with
3320 .Fl s ,
3321 otherwise a session option.
3322 If the option is not a user option,
3323 .Fl w
3325 .Fl s
3326 may be unnecessary -
3328 will infer the type from the option name, assuming
3329 .Fl w
3330 for pane options.
3332 .Fl g
3333 is given, the global session or window option is set.
3335 .Fl F
3336 expands formats in the option value.
3338 .Fl u
3339 flag unsets an option, so a session inherits the option from the global
3340 options (or with
3341 .Fl g ,
3342 restores a global option to the default).
3343 .Fl U
3344 unsets an option (like
3345 .Fl u )
3346 but if the option is a pane option also unsets the option on any panes in the
3347 window.
3348 .Ar value
3349 depends on the option and may be a number, a string, or a flag (on, off, or
3350 omitted to toggle).
3353 .Fl o
3354 flag prevents setting an option that is already set and the
3355 .Fl q
3356 flag suppresses errors about unknown or ambiguous options.
3358 With
3359 .Fl a ,
3360 and if the option expects a string or a style,
3361 .Ar value
3362 is appended to the existing setting.
3363 For example:
3364 .Bd -literal -offset indent
3365 set -g status-left "foo"
3366 set -ag status-left "bar"
3369 Will result in
3370 .Ql foobar .
3371 And:
3372 .Bd -literal -offset indent
3373 set -g status-style "bg=red"
3374 set -ag status-style "fg=blue"
3377 Will result in a red background
3378 .Em and
3379 blue foreground.
3380 Without
3381 .Fl a ,
3382 the result would be the default background and a blue foreground.
3383 .Tg show
3384 .It Xo Ic show-options
3385 .Op Fl AgHpqsvw
3386 .Op Fl t Ar target-pane
3387 .Op Ar option
3389 .D1 Pq alias: Ic show
3390 Show the pane options (or a single option if
3391 .Ar option
3392 is provided) with
3393 .Fl p ,
3394 the window options with
3395 .Fl w ,
3396 the server options with
3397 .Fl s ,
3398 otherwise the session options.
3399 If the option is not a user option,
3400 .Fl w
3402 .Fl s
3403 may be unnecessary -
3405 will infer the type from the option name, assuming
3406 .Fl w
3407 for pane options.
3408 Global session or window options are listed if
3409 .Fl g
3410 is used.
3411 .Fl v
3412 shows only the option value, not the name.
3414 .Fl q
3415 is set, no error will be returned if
3416 .Ar option
3417 is unset.
3418 .Fl H
3419 includes hooks (omitted by default).
3420 .Fl A
3421 includes options inherited from a parent set of options, such options are
3422 marked with an asterisk.
3425 Available server options are:
3426 .Bl -tag -width Ds
3427 .It Ic backspace Ar key
3428 Set the key sent by
3430 for backspace.
3431 .It Ic buffer-limit Ar number
3432 Set the number of buffers; as new buffers are added to the top of the stack,
3433 old ones are removed from the bottom if necessary to maintain this maximum
3434 length.
3435 .It Xo Ic command-alias[]
3436 .Ar name=value
3438 This is an array of custom aliases for commands.
3439 If an unknown command matches
3440 .Ar name ,
3441 it is replaced with
3442 .Ar value .
3443 For example, after:
3445 .Dl set -s command-alias[100] zoom='resize-pane -Z'
3447 Using:
3449 .Dl zoom -t:.1
3451 Is equivalent to:
3453 .Dl resize-pane -Z -t:.1
3455 Note that aliases are expanded when a command is parsed rather than when it is
3456 executed, so binding an alias with
3457 .Ic bind-key
3458 will bind the expanded form.
3459 .It Ic default-terminal Ar terminal
3460 Set the default terminal for new windows created in this session - the
3461 default value of the
3462 .Ev TERM
3463 environment variable.
3466 to work correctly, this
3467 .Em must
3468 be set to
3469 .Ql screen ,
3470 .Ql tmux
3471 or a derivative of them.
3472 .It Ic copy-command Ar shell-command
3473 Give the command to pipe to if the
3474 .Ic copy-pipe
3475 copy mode command is used without arguments.
3476 .It Ic escape-time Ar time
3477 Set the time in milliseconds for which
3479 waits after an escape is input to determine if it is part of a function or meta
3480 key sequences.
3481 The default is 500 milliseconds.
3482 .It Ic editor Ar shell-command
3483 Set the command used when
3485 runs an editor.
3486 .It Xo Ic exit-empty
3487 .Op Ic on | off
3489 If enabled (the default), the server will exit when there are no active
3490 sessions.
3491 .It Xo Ic exit-unattached
3492 .Op Ic on | off
3494 If enabled, the server will exit when there are no attached clients.
3495 .It Xo Ic extended-keys
3496 .Op Ic on | off | always
3498 When
3499 .Ic on
3501 .Ic always ,
3502 the escape sequence to enable extended keys is sent to the terminal, if
3504 knows that it is supported.
3506 always recognises extended keys itself.
3507 If this option is
3508 .Ic on ,
3510 will only forward extended keys to applications when they request them; if
3511 .Ic always ,
3513 will always forward the keys.
3514 .It Xo Ic focus-events
3515 .Op Ic on | off
3517 When enabled, focus events are requested from the terminal if supported and
3518 passed through to applications running in
3519 .Nm .
3520 Attached clients should be detached and attached again after changing this
3521 option.
3522 .It Ic history-file Ar path
3523 If not empty, a file to which
3525 will write command prompt history on exit and load it from on start.
3526 .It Ic message-limit Ar number
3527 Set the number of error or information messages to save in the message log for
3528 each client.
3529 .It Ic prompt-history-limit Ar number
3530 Set the number of history items to save in the history file for each type of
3531 command prompt.
3532 .It Xo Ic set-clipboard
3533 .Op Ic on | external | off
3535 Attempt to set the terminal clipboard content using the
3536 .Xr xterm 1
3537 escape sequence, if there is an
3538 .Em \&Ms
3539 entry in the
3540 .Xr terminfo 5
3541 description (see the
3542 .Sx TERMINFO EXTENSIONS
3543 section).
3545 If set to
3546 .Ic on ,
3548 will both accept the escape sequence to create a buffer and attempt to set
3549 the terminal clipboard.
3550 If set to
3551 .Ic external ,
3553 will attempt to set the terminal clipboard but ignore attempts
3554 by applications to set
3556 buffers.
3558 .Ic off ,
3560 will neither accept the clipboard escape sequence nor attempt to set the
3561 clipboard.
3563 Note that this feature needs to be enabled in
3564 .Xr xterm 1
3565 by setting the resource:
3566 .Bd -literal -offset indent
3567 disallowedWindowOps: 20,21,SetXprop
3570 Or changing this property from the
3571 .Xr xterm 1
3572 interactive menu when required.
3573 .It Ic terminal-features[] Ar string
3574 Set terminal features for terminal types read from
3575 .Xr terminfo 5 .
3577 has a set of named terminal features.
3578 Each will apply appropriate changes to the
3579 .Xr terminfo 5
3580 entry in use.
3583 can detect features for a few common terminals; this option can be used to
3584 easily tell tmux about features supported by terminals it cannot detect.
3586 .Ic terminal-overrides
3587 option allows individual
3588 .Xr terminfo 5
3589 capabilities to be set instead,
3590 .Ic terminal-features
3591 is intended for classes of functionality supported in a standard way but not
3592 reported by
3593 .Xr terminfo 5 .
3594 Care must be taken to configure this only with features the terminal actually
3595 supports.
3597 This is an array option where each entry is a colon-separated string made up
3598 of a terminal type pattern (matched using
3599 .Xr fnmatch 3 )
3600 followed by a list of terminal features.
3601 The available features are:
3602 .Bl -tag -width Ds
3603 .It 256
3604 Supports 256 colours with the SGR escape sequences.
3605 .It clipboard
3606 Allows setting the system clipboard.
3607 .It ccolour
3608 Allows setting the cursor colour.
3609 .It cstyle
3610 Allows setting the cursor style.
3611 .It extkeys
3612 Supports extended keys.
3613 .It focus
3614 Supports focus reporting.
3615 .It margins
3616 Supports DECSLRM margins.
3617 .It mouse
3618 Supports
3619 .Xr xterm 1
3620 mouse sequences.
3621 .It overline
3622 Supports the overline SGR attribute.
3623 .It rectfill
3624 Supports the DECFRA rectangle fill escape sequence.
3625 .It RGB
3626 Supports RGB colour with the SGR escape sequences.
3627 .It strikethrough
3628 Supports the strikethrough SGR escape sequence.
3629 .It sync
3630 Supports synchronized updates.
3631 .It title
3632 Supports
3633 .Xr xterm 1
3634 title setting.
3635 .It usstyle
3636 Allows underscore style and colour to be set.
3638 .It Ic terminal-overrides[] Ar string
3639 Allow terminal descriptions read using
3640 .Xr terminfo 5
3641 to be overridden.
3642 Each entry is a colon-separated string made up of a terminal type pattern
3643 (matched using
3644 .Xr fnmatch 3 )
3645 and a set of
3646 .Em name=value
3647 entries.
3649 For example, to set the
3650 .Ql clear
3651 .Xr terminfo 5
3652 entry to
3653 .Ql \ee[H\ee[2J
3654 for all terminal types matching
3655 .Ql rxvt* :
3657 .Dl "rxvt*:clear=\ee[H\ee[2J"
3659 The terminal entry value is passed through
3660 .Xr strunvis 3
3661 before interpretation.
3662 .It Ic user-keys[] Ar key
3663 Set list of user-defined key escape sequences.
3664 Each item is associated with a key named
3665 .Ql User0 ,
3666 .Ql User1 ,
3667 and so on.
3669 For example:
3670 .Bd -literal -offset indent
3671 set -s user-keys[0] "\ee[5;30012~"
3672 bind User0 resize-pane -L 3
3676 Available session options are:
3677 .Bl -tag -width Ds
3678 .It Xo Ic activity-action
3679 .Op Ic any | none | current | other
3681 Set action on window activity when
3682 .Ic monitor-activity
3683 is on.
3684 .Ic any
3685 means activity in any window linked to a session causes a bell or message
3686 (depending on
3687 .Ic visual-activity )
3688 in the current window of that session,
3689 .Ic none
3690 means all activity is ignored (equivalent to
3691 .Ic monitor-activity
3692 being off),
3693 .Ic current
3694 means only activity in windows other than the current window are ignored and
3695 .Ic other
3696 means activity in the current window is ignored but not those in other windows.
3697 .It Ic assume-paste-time Ar milliseconds
3698 If keys are entered faster than one in
3699 .Ar milliseconds ,
3700 they are assumed to have been pasted rather than typed and
3702 key bindings are not processed.
3703 The default is one millisecond and zero disables.
3704 .It Ic base-index Ar index
3705 Set the base index from which an unused index should be searched when a new
3706 window is created.
3707 The default is zero.
3708 .It Xo Ic bell-action
3709 .Op Ic any | none | current | other
3711 Set action on a bell in a window when
3712 .Ic monitor-bell
3713 is on.
3714 The values are the same as those for
3715 .Ic activity-action .
3716 .It Ic default-command Ar shell-command
3717 Set the command used for new windows (if not specified when the window is
3718 created) to
3719 .Ar shell-command ,
3720 which may be any
3721 .Xr sh 1
3722 command.
3723 The default is an empty string, which instructs
3725 to create a login shell using the value of the
3726 .Ic default-shell
3727 option.
3728 .It Ic default-shell Ar path
3729 Specify the default shell.
3730 This is used as the login shell for new windows when the
3731 .Ic default-command
3732 option is set to empty, and must be the full path of the executable.
3733 When started
3735 tries to set a default value from the first suitable of the
3736 .Ev SHELL
3737 environment variable, the shell returned by
3738 .Xr getpwuid 3 ,
3740 .Pa /bin/sh .
3741 This option should be configured when
3743 is used as a login shell.
3744 .It Ic default-size Ar XxY
3745 Set the default size of new windows when the
3746 .Ic window-size
3747 option is set to manual or when a session is created with
3748 .Ic new-session
3749 .Fl d .
3750 The value is the width and height separated by an
3751 .Ql x
3752 character.
3753 The default is 80x24.
3754 .It Xo Ic destroy-unattached
3755 .Op Ic on | off
3757 If enabled and the session is no longer attached to any clients, it is
3758 destroyed.
3759 .It Xo Ic detach-on-destroy
3760 .Op Ic off | on | no-detached
3762 If on (the default), the client is detached when the session it is attached to
3763 is destroyed.
3764 If off, the client is switched to the most recently active of the remaining
3765 sessions.
3767 .Ic no-detached ,
3768 the client is detached only if there are no detached sessions; if detached
3769 sessions exist, the client is switched to the most recently active.
3770 .It Ic display-panes-active-colour Ar colour
3771 Set the colour used by the
3772 .Ic display-panes
3773 command to show the indicator for the active pane.
3774 .It Ic display-panes-colour Ar colour
3775 Set the colour used by the
3776 .Ic display-panes
3777 command to show the indicators for inactive panes.
3778 .It Ic display-panes-time Ar time
3779 Set the time in milliseconds for which the indicators shown by the
3780 .Ic display-panes
3781 command appear.
3782 .It Ic display-time Ar time
3783 Set the amount of time for which status line messages and other on-screen
3784 indicators are displayed.
3785 If set to 0, messages and indicators are displayed until a key is pressed.
3786 .Ar time
3787 is in milliseconds.
3788 .It Ic history-limit Ar lines
3789 Set the maximum number of lines held in window history.
3790 This setting applies only to new windows - existing window histories are not
3791 resized and retain the limit at the point they were created.
3792 .It Ic key-table Ar key-table
3793 Set the default key table to
3794 .Ar key-table
3795 instead of
3796 .Em root .
3797 .It Ic lock-after-time Ar number
3798 Lock the session (like the
3799 .Ic lock-session
3800 command) after
3801 .Ar number
3802 seconds of inactivity.
3803 The default is not to lock (set to 0).
3804 .It Ic lock-command Ar shell-command
3805 Command to run when locking each client.
3806 The default is to run
3807 .Xr lock 1
3808 with
3809 .Fl np .
3810 .It Ic message-command-style Ar style
3811 Set status line message command style.
3812 This is used for the command prompt with
3813 .Xr vi 1
3814 keys when in command mode.
3815 For how to specify
3816 .Ar style ,
3817 see the
3818 .Sx STYLES
3819 section.
3820 .It Ic message-style Ar style
3821 Set status line message style.
3822 This is used for messages and for the command prompt.
3823 For how to specify
3824 .Ar style ,
3825 see the
3826 .Sx STYLES
3827 section.
3828 .It Xo Ic mouse
3829 .Op Ic on | off
3831 If on,
3833 captures the mouse and allows mouse events to be bound as key bindings.
3834 See the
3835 .Sx MOUSE SUPPORT
3836 section for details.
3837 .It Ic prefix Ar key
3838 Set the key accepted as a prefix key.
3839 In addition to the standard keys described under
3840 .Sx KEY BINDINGS ,
3841 .Ic prefix
3842 can be set to the special key
3843 .Ql None
3844 to set no prefix.
3845 .It Ic prefix2 Ar key
3846 Set a secondary key accepted as a prefix key.
3847 Like
3848 .Ic prefix ,
3849 .Ic prefix2
3850 can be set to
3851 .Ql None .
3852 .It Xo Ic renumber-windows
3853 .Op Ic on | off
3855 If on, when a window is closed in a session, automatically renumber the other
3856 windows in numerical order.
3857 This respects the
3858 .Ic base-index
3859 option if it has been set.
3860 If off, do not renumber the windows.
3861 .It Ic repeat-time Ar time
3862 Allow multiple commands to be entered without pressing the prefix-key again
3863 in the specified
3864 .Ar time
3865 milliseconds (the default is 500).
3866 Whether a key repeats may be set when it is bound using the
3867 .Fl r
3868 flag to
3869 .Ic bind-key .
3870 Repeat is enabled for the default keys bound to the
3871 .Ic resize-pane
3872 command.
3873 .It Xo Ic set-titles
3874 .Op Ic on | off
3876 Attempt to set the client terminal title using the
3877 .Em tsl
3879 .Em fsl
3880 .Xr terminfo 5
3881 entries if they exist.
3883 automatically sets these to the \ee]0;...\e007 sequence if
3884 the terminal appears to be
3885 .Xr xterm 1 .
3886 This option is off by default.
3887 .It Ic set-titles-string Ar string
3888 String used to set the client terminal title if
3889 .Ic set-titles
3890 is on.
3891 Formats are expanded, see the
3892 .Sx FORMATS
3893 section.
3894 .It Xo Ic silence-action
3895 .Op Ic any | none | current | other
3897 Set action on window silence when
3898 .Ic monitor-silence
3899 is on.
3900 The values are the same as those for
3901 .Ic activity-action .
3902 .It Xo Ic status
3903 .Op Ic off | on | 2 | 3 | 4 | 5
3905 Show or hide the status line or specify its size.
3906 Using
3907 .Ic on
3908 gives a status line one row in height;
3909 .Ic 2 ,
3910 .Ic 3 ,
3911 .Ic 4
3913 .Ic 5
3914 more rows.
3915 .It Ic status-format[] Ar format
3916 Specify the format to be used for each line of the status line.
3917 The default builds the top status line from the various individual status
3918 options below.
3919 .It Ic status-interval Ar interval
3920 Update the status line every
3921 .Ar interval
3922 seconds.
3923 By default, updates will occur every 15 seconds.
3924 A setting of zero disables redrawing at interval.
3925 .It Xo Ic status-justify
3926 .Op Ic left | centre | right | absolute-centre
3928 Set the position of the window list in the status line: left, centre or right.
3929 centre puts the window list in the relative centre of the available free space;
3930 absolute-centre uses the centre of the entire horizontal space.
3931 .It Xo Ic status-keys
3932 .Op Ic vi | emacs
3934 Use vi or emacs-style
3935 key bindings in the status line, for example at the command prompt.
3936 The default is emacs, unless the
3937 .Ev VISUAL
3939 .Ev EDITOR
3940 environment variables are set and contain the string
3941 .Ql vi .
3942 .It Ic status-left Ar string
3943 Display
3944 .Ar string
3945 (by default the session name) to the left of the status line.
3946 .Ar string
3947 will be passed through
3948 .Xr strftime 3 .
3949 Also see the
3950 .Sx FORMATS
3952 .Sx STYLES
3953 sections.
3955 For details on how the names and titles can be set see the
3956 .Sx "NAMES AND TITLES"
3957 section.
3959 Examples are:
3960 .Bd -literal -offset indent
3961 #(sysctl vm.loadavg)
3962 #[fg=yellow,bold]#(apm -l)%%#[default] [#S]
3965 The default is
3966 .Ql "[#S] " .
3967 .It Ic status-left-length Ar length
3968 Set the maximum
3969 .Ar length
3970 of the left component of the status line.
3971 The default is 10.
3972 .It Ic status-left-style Ar style
3973 Set the style of the left part of the status line.
3974 For how to specify
3975 .Ar style ,
3976 see the
3977 .Sx STYLES
3978 section.
3979 .It Xo Ic status-position
3980 .Op Ic top | bottom
3982 Set the position of the status line.
3983 .It Ic status-right Ar string
3984 Display
3985 .Ar string
3986 to the right of the status line.
3987 By default, the current pane title in double quotes, the date and the time
3988 are shown.
3989 As with
3990 .Ic status-left ,
3991 .Ar string
3992 will be passed to
3993 .Xr strftime 3
3994 and character pairs are replaced.
3995 .It Ic status-right-length Ar length
3996 Set the maximum
3997 .Ar length
3998 of the right component of the status line.
3999 The default is 40.
4000 .It Ic status-right-style Ar style
4001 Set the style of the right part of the status line.
4002 For how to specify
4003 .Ar style ,
4004 see the
4005 .Sx STYLES
4006 section.
4007 .It Ic status-style Ar style
4008 Set status line style.
4009 For how to specify
4010 .Ar style ,
4011 see the
4012 .Sx STYLES
4013 section.
4014 .It Ic update-environment[] Ar variable
4015 Set list of environment variables to be copied into the session environment
4016 when a new session is created or an existing session is attached.
4017 Any variables that do not exist in the source environment are set to be
4018 removed from the session environment (as if
4019 .Fl r
4020 was given to the
4021 .Ic set-environment
4022 command).
4023 .It Xo Ic visual-activity
4024 .Op Ic on | off | both
4026 If on, display a message instead of sending a bell when activity occurs in a
4027 window for which the
4028 .Ic monitor-activity
4029 window option is enabled.
4030 If set to both, a bell and a message are produced.
4031 .It Xo Ic visual-bell
4032 .Op Ic on | off | both
4034 If on, a message is shown on a bell in a window for which the
4035 .Ic monitor-bell
4036 window option is enabled instead of it being passed through to the
4037 terminal (which normally makes a sound).
4038 If set to both, a bell and a message are produced.
4039 Also see the
4040 .Ic bell-action
4041 option.
4042 .It Xo Ic visual-silence
4043 .Op Ic on | off | both
4046 .Ic monitor-silence
4047 is enabled, prints a message after the interval has expired on a given window
4048 instead of sending a bell.
4049 If set to both, a bell and a message are produced.
4050 .It Ic word-separators Ar string
4051 Sets the session's conception of what characters are considered word
4052 separators, for the purposes of the next and previous word commands in
4053 copy mode.
4056 Available window options are:
4058 .Bl -tag -width Ds -compact
4059 .It Xo Ic aggressive-resize
4060 .Op Ic on | off
4062 Aggressively resize the chosen window.
4063 This means that
4065 will resize the window to the size of the smallest or largest session
4066 (see the
4067 .Ic window-size
4068 option) for which it is the current window, rather than the session to
4069 which it is attached.
4070 The window may resize when the current window is changed on another
4071 session; this option is good for full-screen programs which support
4072 .Dv SIGWINCH
4073 and poor for interactive programs such as shells.
4075 .It Xo Ic automatic-rename
4076 .Op Ic on | off
4078 Control automatic window renaming.
4079 When this setting is enabled,
4081 will rename the window automatically using the format specified by
4082 .Ic automatic-rename-format .
4083 This flag is automatically disabled for an individual window when a name
4084 is specified at creation with
4085 .Ic new-window
4087 .Ic new-session ,
4088 or later with
4089 .Ic rename-window ,
4090 or with a terminal escape sequence.
4091 It may be switched off globally with:
4092 .Bd -literal -offset indent
4093 set-option -wg automatic-rename off
4096 .It Ic automatic-rename-format Ar format
4097 The format (see
4098 .Sx FORMATS )
4099 used when the
4100 .Ic automatic-rename
4101 option is enabled.
4103 .It Ic clock-mode-colour Ar colour
4104 Set clock colour.
4106 .It Xo Ic clock-mode-style
4107 .Op Ic 12 | 24
4109 Set clock hour format.
4111 .It Ic main-pane-height Ar height
4112 .It Ic main-pane-width Ar width
4113 Set the width or height of the main (left or top) pane in the
4114 .Ic main-horizontal
4116 .Ic main-vertical
4117 layouts.
4118 If suffixed by
4119 .Ql % ,
4120 this is a percentage of the window size.
4122 .It Ic copy-mode-match-style Ar style
4123 Set the style of search matches in copy mode.
4124 For how to specify
4125 .Ar style ,
4126 see the
4127 .Sx STYLES
4128 section.
4130 .It Ic copy-mode-mark-style Ar style
4131 Set the style of the line containing the mark in copy mode.
4132 For how to specify
4133 .Ar style ,
4134 see the
4135 .Sx STYLES
4136 section.
4138 .It Ic copy-mode-current-match-style Ar style
4139 Set the style of the current search match in copy mode.
4140 For how to specify
4141 .Ar style ,
4142 see the
4143 .Sx STYLES
4144 section.
4146 .It Xo Ic mode-keys
4147 .Op Ic vi | emacs
4149 Use vi or emacs-style key bindings in copy mode.
4150 The default is emacs, unless
4151 .Ev VISUAL
4153 .Ev EDITOR
4154 contains
4155 .Ql vi .
4157 .It Ic mode-style Ar style
4158 Set window modes style.
4159 For how to specify
4160 .Ar style ,
4161 see the
4162 .Sx STYLES
4163 section.
4165 .It Xo Ic monitor-activity
4166 .Op Ic on | off
4168 Monitor for activity in the window.
4169 Windows with activity are highlighted in the status line.
4171 .It Xo Ic monitor-bell
4172 .Op Ic on | off
4174 Monitor for a bell in the window.
4175 Windows with a bell are highlighted in the status line.
4177 .It Xo Ic monitor-silence
4178 .Op Ic interval
4180 Monitor for silence (no activity) in the window within
4181 .Ic interval
4182 seconds.
4183 Windows that have been silent for the interval are highlighted in the
4184 status line.
4185 An interval of zero disables the monitoring.
4187 .It Ic other-pane-height Ar height
4188 Set the height of the other panes (not the main pane) in the
4189 .Ic main-horizontal
4190 layout.
4191 If this option is set to 0 (the default), it will have no effect.
4192 If both the
4193 .Ic main-pane-height
4195 .Ic other-pane-height
4196 options are set, the main pane will grow taller to make the other panes the
4197 specified height, but will never shrink to do so.
4198 If suffixed by
4199 .Ql % ,
4200 this is a percentage of the window size.
4202 .It Ic other-pane-width Ar width
4203 Like
4204 .Ic other-pane-height ,
4205 but set the width of other panes in the
4206 .Ic main-vertical
4207 layout.
4209 .It Ic pane-active-border-style Ar style
4210 Set the pane border style for the currently active pane.
4211 For how to specify
4212 .Ar style ,
4213 see the
4214 .Sx STYLES
4215 section.
4216 Attributes are ignored.
4218 .It Ic pane-base-index Ar index
4219 Like
4220 .Ic base-index ,
4221 but set the starting index for pane numbers.
4223 .It Ic pane-border-format Ar format
4224 Set the text shown in pane border status lines.
4226 .It Ic pane-border-lines Ar type
4227 Set the type of characters used for drawing pane borders.
4228 .Ar type
4229 may be one of:
4230 .Bl -tag -width Ds
4231 .It single
4232 single lines using ACS or UTF-8 characters
4233 .It double
4234 double lines using UTF-8 characters
4235 .It heavy
4236 heavy lines using UTF-8 characters
4237 .It simple
4238 simple ASCII characters
4239 .It number
4240 the pane number
4243 .Ql double
4245 .Ql heavy
4246 will fall back to standard ACS line drawing when UTF-8 is not supported.
4248 .It Xo Ic pane-border-status
4249 .Op Ic off | top | bottom
4251 Turn pane border status lines off or set their position.
4253 .It Ic pane-border-style Ar style
4254 Set the pane border style for panes aside from the active pane.
4255 For how to specify
4256 .Ar style ,
4257 see the
4258 .Sx STYLES
4259 section.
4260 Attributes are ignored.
4262 .It Ic popup-style Ar style
4263 Set the popup style.
4264 For how to specify
4265 .Ar style ,
4266 see the
4267 .Sx STYLES
4268 section.
4269 Attributes are ignored.
4271 .It Ic popup-border-style Ar style
4272 Set the popup border style.
4273 For how to specify
4274 .Ar style ,
4275 see the
4276 .Sx STYLES
4277 section.
4278 Attributes are ignored.
4280 .It Ic popup-border-lines Ar type
4281 Set the type of characters used for drawing popup borders.
4282 .Ar type
4283 may be one of:
4284 .Bl -tag -width Ds
4285 .It single
4286 single lines using ACS or UTF-8 characters (default)
4287 .It rounded
4288 variation of single with rounded corners using UTF-8 characters
4289 .It double
4290 double lines using UTF-8 characters
4291 .It heavy
4292 heavy lines using UTF-8 characters
4293 .It simple
4294 simple ASCII characters
4295 .It padded
4296 simple ASCII space character
4297 .It none
4298 no border
4301 .Ql double
4303 .Ql heavy
4304 will fall back to standard ACS line drawing when UTF-8 is not supported.
4306 .It Ic window-status-activity-style Ar style
4307 Set status line style for windows with an activity alert.
4308 For how to specify
4309 .Ar style ,
4310 see the
4311 .Sx STYLES
4312 section.
4314 .It Ic window-status-bell-style Ar style
4315 Set status line style for windows with a bell alert.
4316 For how to specify
4317 .Ar style ,
4318 see the
4319 .Sx STYLES
4320 section.
4322 .It Ic window-status-current-format Ar string
4323 Like
4324 .Ar window-status-format ,
4325 but is the format used when the window is the current window.
4327 .It Ic window-status-current-style Ar style
4328 Set status line style for the currently active window.
4329 For how to specify
4330 .Ar style ,
4331 see the
4332 .Sx STYLES
4333 section.
4335 .It Ic window-status-format Ar string
4336 Set the format in which the window is displayed in the status line window list.
4337 See the
4338 .Sx FORMATS
4340 .Sx STYLES
4341 sections.
4343 .It Ic window-status-last-style Ar style
4344 Set status line style for the last active window.
4345 For how to specify
4346 .Ar style ,
4347 see the
4348 .Sx STYLES
4349 section.
4351 .It Ic window-status-separator Ar string
4352 Sets the separator drawn between windows in the status line.
4353 The default is a single space character.
4355 .It Ic window-status-style Ar style
4356 Set status line style for a single window.
4357 For how to specify
4358 .Ar style ,
4359 see the
4360 .Sx STYLES
4361 section.
4363 .It Xo Ic window-size
4364 .Ar largest | Ar smallest | Ar manual | Ar latest
4366 Configure how
4368 determines the window size.
4369 If set to
4370 .Ar largest ,
4371 the size of the largest attached session is used; if
4372 .Ar smallest ,
4373 the size of the smallest.
4375 .Ar manual ,
4376 the size of a new window is set from the
4377 .Ic default-size
4378 option and windows are resized automatically.
4379 With
4380 .Ar latest ,
4382 uses the size of the client that had the most recent activity.
4383 See also the
4384 .Ic resize-window
4385 command and the
4386 .Ic aggressive-resize
4387 option.
4389 .It Xo Ic wrap-search
4390 .Op Ic on | off
4392 If this option is set, searches will wrap around the end of the pane contents.
4393 The default is on.
4396 Available pane options are:
4398 .Bl -tag -width Ds -compact
4399 .It Xo Ic allow-rename
4400 .Op Ic on | off
4402 Allow programs in the pane to change the window name using a terminal escape
4403 sequence (\eek...\ee\e\e).
4405 .It Xo Ic alternate-screen
4406 .Op Ic on | off
4408 This option configures whether programs running inside the pane may use the
4409 terminal alternate screen feature, which allows the
4410 .Em smcup
4412 .Em rmcup
4413 .Xr terminfo 5
4414 capabilities.
4415 The alternate screen feature preserves the contents of the window when an
4416 interactive application starts and restores it on exit, so that any output
4417 visible before the application starts reappears unchanged after it exits.
4419 .It Ic cursor-colour Ar colour
4420 Set the colour of the cursor.
4422 .It Ic pane-colours[] Ar colour
4423 The default colour palette.
4424 Each entry in the array defines the colour
4426 uses when the colour with that index is requested.
4427 The index may be from zero to 255.
4429 .It Ic cursor-style Ar style
4430 Set the style of the cursor.
4431 Available styles are:
4432 .Ic default ,
4433 .Ic blinking-block ,
4434 .Ic block ,
4435 .Ic blinking-underline ,
4436 .Ic underline ,
4437 .Ic blinking-bar ,
4438 .Ic bar .
4440 .It Xo Ic remain-on-exit
4441 .Op Ic on | off | failed
4443 A pane with this flag set is not destroyed when the program running in it
4444 exits.
4445 If set to
4446 .Ic failed ,
4447 then only when the program exit status is not zero.
4448 The pane may be reactivated with the
4449 .Ic respawn-pane
4450 command.
4452 .It Xo Ic synchronize-panes
4453 .Op Ic on | off
4455 Duplicate input to all other panes in the same window where this option is also
4456 on (only for panes that are not in any mode).
4458 .It Ic window-active-style Ar style
4459 Set the pane style when it is the active pane.
4460 For how to specify
4461 .Ar style ,
4462 see the
4463 .Sx STYLES
4464 section.
4466 .It Ic window-style Ar style
4467 Set the pane style.
4468 For how to specify
4469 .Ar style ,
4470 see the
4471 .Sx STYLES
4472 section.
4474 .Sh HOOKS
4476 allows commands to run on various triggers, called
4477 .Em hooks .
4478 Most
4480 commands have an
4481 .Em after
4482 hook and there are a number of hooks not associated with commands.
4484 Hooks are stored as array options, members of the array are executed in
4485 order when the hook is triggered.
4486 Like options different hooks may be global or belong to a session, window or pane.
4487 Hooks may be configured with the
4488 .Ic set-hook
4490 .Ic set-option
4491 commands and displayed with
4492 .Ic show-hooks
4494 .Ic show-options
4495 .Fl H .
4496 The following two commands are equivalent:
4497 .Bd -literal -offset indent.
4498 set-hook -g pane-mode-changed[42] 'set -g status-left-style bg=red'
4499 set-option -g pane-mode-changed[42] 'set -g status-left-style bg=red'
4502 Setting a hook without specifying an array index clears the hook and sets the
4503 first member of the array.
4505 A command's after
4506 hook is run after it completes, except when the command is run as part of a hook
4507 itself.
4508 They are named with an
4509 .Ql after-
4510 prefix.
4511 For example, the following command adds a hook to select the even-vertical
4512 layout after every
4513 .Ic split-window :
4514 .Bd -literal -offset indent
4515 set-hook -g after-split-window "selectl even-vertical"
4518 All the notifications listed in the
4519 .Sx CONTROL MODE
4520 section are hooks (without any arguments), except
4521 .Ic %exit .
4522 The following additional hooks are available:
4523 .Bl -tag -width "XXXXXXXXXXXXXXXXXXXXXX"
4524 .It alert-activity
4525 Run when a window has activity.
4527 .Ic monitor-activity .
4528 .It alert-bell
4529 Run when a window has received a bell.
4531 .Ic monitor-bell .
4532 .It alert-silence
4533 Run when a window has been silent.
4535 .Ic monitor-silence .
4536 .It client-active
4537 Run when a client becomes the latest active client of its session.
4538 .It client-attached
4539 Run when a client is attached.
4540 .It client-detached
4541 Run when a client is detached
4542 .It client-focus-in
4543 Run when focus enters a client
4544 .It client-focus-out
4545 Run when focus exits a client
4546 .It client-resized
4547 Run when a client is resized.
4548 .It client-session-changed
4549 Run when a client's attached session is changed.
4550 .It pane-died
4551 Run when the program running in a pane exits, but
4552 .Ic remain-on-exit
4553 is on so the pane has not closed.
4554 .It pane-exited
4555 Run when the program running in a pane exits.
4556 .It pane-focus-in
4557 Run when the focus enters a pane, if the
4558 .Ic focus-events
4559 option is on.
4560 .It pane-focus-out
4561 Run when the focus exits a pane, if the
4562 .Ic focus-events
4563 option is on.
4564 .It pane-set-clipboard
4565 Run when the terminal clipboard is set using the
4566 .Xr xterm 1
4567 escape sequence.
4568 .It session-created
4569 Run when a new session created.
4570 .It session-closed
4571 Run when a session closed.
4572 .It session-renamed
4573 Run when a session is renamed.
4574 .It window-linked
4575 Run when a window is linked into a session.
4576 .It window-renamed
4577 Run when a window is renamed.
4578 .It window-unlinked
4579 Run when a window is unlinked from a session.
4582 Hooks are managed with these commands:
4583 .Bl -tag -width Ds
4584 .It Xo Ic set-hook
4585 .Op Fl agpRuw
4586 .Op Fl t Ar target-pane
4587 .Ar hook-name
4588 .Ar command
4590 Without
4591 .Fl R ,
4592 sets (or with
4593 .Fl u
4594 unsets) hook
4595 .Ar hook-name
4597 .Ar command .
4598 The flags are the same as for
4599 .Ic set-option .
4601 With
4602 .Fl R ,
4604 .Ar hook-name
4605 immediately.
4606 .It Xo Ic show-hooks
4607 .Op Fl gpw
4608 .Op Fl t Ar target-pane
4610 Shows hooks.
4611 The flags are the same as for
4612 .Ic show-options .
4614 .Sh MOUSE SUPPORT
4615 If the
4616 .Ic mouse
4617 option is on (the default is off),
4619 allows mouse events to be bound as keys.
4620 The name of each key is made up of a mouse event (such as
4621 .Ql MouseUp1 )
4622 and a location suffix, one of the following:
4623 .Bl -column "XXXXXXXXXXXXX" -offset indent
4624 .It Li "Pane" Ta "the contents of a pane"
4625 .It Li "Border" Ta "a pane border"
4626 .It Li "Status" Ta "the status line window list"
4627 .It Li "StatusLeft" Ta "the left part of the status line"
4628 .It Li "StatusRight" Ta "the right part of the status line"
4629 .It Li "StatusDefault" Ta "any other part of the status line"
4632 The following mouse events are available:
4633 .Bl -column "MouseDown1" "MouseDrag1" "WheelDown" -offset indent
4634 .It Li "WheelUp" Ta "WheelDown" Ta ""
4635 .It Li "MouseDown1" Ta "MouseUp1" Ta "MouseDrag1" Ta "MouseDragEnd1"
4636 .It Li "MouseDown2" Ta "MouseUp2" Ta "MouseDrag2" Ta "MouseDragEnd2"
4637 .It Li "MouseDown3" Ta "MouseUp3" Ta "MouseDrag3" Ta "MouseDragEnd3"
4638 .It Li "SecondClick1" Ta "SecondClick2" Ta "SecondClick3"
4639 .It Li "DoubleClick1" Ta "DoubleClick2" Ta "DoubleClick3"
4640 .It Li "TripleClick1" Ta "TripleClick2" Ta "TripleClick3"
4644 .Ql SecondClick
4645 events are fired for the second click of a double click, even if there may be a
4646 third click which will fire
4647 .Ql TripleClick
4648 instead of
4649 .Ql DoubleClick .
4651 Each should be suffixed with a location, for example
4652 .Ql MouseDown1Status .
4654 The special token
4655 .Ql {mouse}
4657 .Ql =
4658 may be used as
4659 .Ar target-window
4661 .Ar target-pane
4662 in commands bound to mouse key bindings.
4663 It resolves to the window or pane over which the mouse event took place
4664 (for example, the window in the status line over which button 1 was released for a
4665 .Ql MouseUp1Status
4666 binding, or the pane over which the wheel was scrolled for a
4667 .Ql WheelDownPane
4668 binding).
4671 .Ic send-keys
4672 .Fl M
4673 flag may be used to forward a mouse event to a pane.
4675 The default key bindings allow the mouse to be used to select and resize panes,
4676 to copy text and to change window using the status line.
4677 These take effect if the
4678 .Ic mouse
4679 option is turned on.
4680 .Sh FORMATS
4681 Certain commands accept the
4682 .Fl F
4683 flag with a
4684 .Ar format
4685 argument.
4686 This is a string which controls the output format of the command.
4687 Format variables are enclosed in
4688 .Ql #{
4690 .Ql } ,
4691 for example
4692 .Ql #{session_name} .
4693 The possible variables are listed in the table below, or the name of a
4695 option may be used for an option's value.
4696 Some variables have a shorter alias such as
4697 .Ql #S ;
4698 .Ql ##
4699 is replaced by a single
4700 .Ql # ,
4701 .Ql #,
4702 by a
4703 .Ql \&,
4705 .Ql #}
4706 by a
4707 .Ql } .
4709 Conditionals are available by prefixing with
4710 .Ql \&?
4711 and separating two alternatives with a comma;
4712 if the specified variable exists and is not zero, the first alternative
4713 is chosen, otherwise the second is used.
4714 For example
4715 .Ql #{?session_attached,attached,not attached}
4716 will include the string
4717 .Ql attached
4718 if the session is attached and the string
4719 .Ql not attached
4720 if it is unattached, or
4721 .Ql #{?automatic-rename,yes,no}
4722 will include
4723 .Ql yes
4725 .Ic automatic-rename
4726 is enabled, or
4727 .Ql no
4728 if not.
4729 Conditionals can be nested arbitrarily.
4730 Inside a conditional,
4731 .Ql \&,
4733 .Ql }
4734 must be escaped as
4735 .Ql #,
4737 .Ql #} ,
4738 unless they are part of a
4739 .Ql #{...}
4740 replacement.
4741 For example:
4742 .Bd -literal -offset indent
4743 #{?pane_in_mode,#[fg=white#,bg=red],#[fg=red#,bg=white]}#W .
4746 String comparisons may be expressed by prefixing two comma-separated
4747 alternatives by
4748 .Ql == ,
4749 .Ql != ,
4750 .Ql < ,
4751 .Ql > ,
4752 .Ql <=
4754 .Ql >=
4755 and a colon.
4756 For example
4757 .Ql #{==:#{host},myhost}
4758 will be replaced by
4759 .Ql 1
4760 if running on
4761 .Ql myhost ,
4762 otherwise by
4763 .Ql 0 .
4764 .Ql ||
4766 .Ql &&
4767 evaluate to true if either or both of two comma-separated alternatives are
4768 true, for example
4769 .Ql #{||:#{pane_in_mode},#{alternate_on}} .
4772 .Ql m
4773 specifies an
4774 .Xr fnmatch 3
4775 or regular expression comparison.
4776 The first argument is the pattern and the second the string to compare.
4777 An optional argument specifies flags:
4778 .Ql r
4779 means the pattern is a regular expression instead of the default
4780 .Xr fnmatch 3
4781 pattern, and
4782 .Ql i
4783 means to ignore case.
4784 For example:
4785 .Ql #{m:*foo*,#{host}}
4787 .Ql #{m/ri:^A,MYVAR} .
4789 .Ql C
4790 performs a search for an
4791 .Xr fnmatch 3
4792 pattern or regular expression in the pane content and evaluates to zero if not
4793 found, or a line number if found.
4794 Like
4795 .Ql m ,
4797 .Ql r
4798 flag means search for a regular expression and
4799 .Ql i
4800 ignores case.
4801 For example:
4802 .Ql #{C/r:^Start}
4804 Numeric operators may be performed by prefixing two comma-separated alternatives with an
4805 .Ql e
4806 and an operator.
4807 An optional
4808 .Ql f
4809 flag may be given after the operator to use floating point numbers, otherwise integers are used.
4810 This may be followed by a number giving the number of decimal places to use for the result.
4811 The available operators are:
4812 addition
4813 .Ql + ,
4814 subtraction
4815 .Ql - ,
4816 multiplication
4817 .Ql * ,
4818 division
4819 .Ql / ,
4820 modulus
4821 .Ql m
4823 .Ql %
4824 (note that
4825 .Ql %
4826 must be escaped as
4827 .Ql %%
4828 in formats which are also expanded by
4829 .Xr strftime 3 )
4830 and numeric comparison operators
4831 .Ql == ,
4832 .Ql != ,
4833 .Ql < ,
4834 .Ql <= ,
4835 .Ql >
4837 .Ql >= .
4838 For example,
4839 .Ql #{e|*|f|4:5.5,3}
4840 multiplies 5.5 by 3 for a result with four decimal places and
4841 .Ql #{e|%%:7,3}
4842 returns the modulus of 7 and 3.
4843 .Ql a
4844 replaces a numeric argument by its ASCII equivalent, so
4845 .Ql #{a:98}
4846 results in
4847 .Ql b .
4848 .Ql c
4849 replaces a
4851 colour by its six-digit hexadecimal RGB value.
4853 A limit may be placed on the length of the resultant string by prefixing it
4854 by an
4855 .Ql = ,
4856 a number and a colon.
4857 Positive numbers count from the start of the string and negative from the end,
4859 .Ql #{=5:pane_title}
4860 will include at most the first five characters of the pane title, or
4861 .Ql #{=-5:pane_title}
4862 the last five characters.
4863 A suffix or prefix may be given as a second argument - if provided then it is
4864 appended or prepended to the string if the length has been trimmed, for example
4865 .Ql #{=/5/...:pane_title}
4866 will append
4867 .Ql ...
4868 if the pane title is more than five characters.
4869 Similarly,
4870 .Ql p
4871 pads the string to a given width, for example
4872 .Ql #{p10:pane_title}
4873 will result in a width of at least 10 characters.
4874 A positive width pads on the left, a negative on the right.
4875 .Ql n
4876 expands to the length of the variable and
4877 .Ql w
4878 to its width when displayed, for example
4879 .Ql #{n:window_name} .
4881 Prefixing a time variable with
4882 .Ql t:\&
4883 will convert it to a string, so if
4884 .Ql #{window_activity}
4885 gives
4886 .Ql 1445765102 ,
4887 .Ql #{t:window_activity}
4888 gives
4889 .Ql Sun Oct 25 09:25:02 2015 .
4890 Adding
4891 .Ql p (
4892 .Ql `t/p` )
4893 will use shorter but less accurate time format for times in the past.
4894 A custom format may be given using an
4895 .Ql f
4896 suffix (note that
4897 .Ql %
4898 must be escaped as
4899 .Ql %%
4900 if the format is separately being passed through
4901 .Xr strftime 3 ,
4902 for example in the
4903 .Ic status-left
4904 option):
4905 .Ql #{t/f/%%H#:%%M:window_activity} ,
4907 .Xr strftime 3 .
4910 .Ql b:\&
4912 .Ql d:\&
4913 prefixes are
4914 .Xr basename 3
4916 .Xr dirname 3
4917 of the variable respectively.
4918 .Ql q:\&
4919 will escape
4920 .Xr sh 1
4921 special characters or with a
4922 .Ql h
4923 suffix, escape hash characters (so
4924 .Ql #
4925 becomes
4926 .Ql ## ) .
4927 .Ql E:\&
4928 will expand the format twice, for example
4929 .Ql #{E:status-left}
4930 is the result of expanding the content of the
4931 .Ic status-left
4932 option rather than the option itself.
4933 .Ql T:\&
4934 is like
4935 .Ql E:\&
4936 but also expands
4937 .Xr strftime 3
4938 specifiers.
4939 .Ql S:\& ,
4940 .Ql W:\&
4942 .Ql P:\&
4943 will loop over each session, window or pane and insert the format once
4944 for each.
4945 For windows and panes, two comma-separated formats may be given:
4946 the second is used for the current window or active pane.
4947 For example, to get a list of windows formatted like the status line:
4948 .Bd -literal -offset indent
4949 #{W:#{E:window-status-format} ,#{E:window-status-current-format} }
4952 .Ql N:\&
4953 checks if a window (without any suffix or with the
4954 .Ql w
4955 suffix) or a session (with the
4956 .Ql s
4957 suffix) name exists, for example
4958 .Ql `N/w:foo`
4959 is replaced with 1 if a window named
4960 .Ql foo
4961 exists.
4963 A prefix of the form
4964 .Ql s/foo/bar/:\&
4965 will substitute
4966 .Ql foo
4967 with
4968 .Ql bar
4969 throughout.
4970 The first argument may be an extended regular expression and a final argument may be
4971 .Ql i
4972 to ignore case, for example
4973 .Ql s/a(.)/\e1x/i:\&
4974 would change
4975 .Ql abABab
4976 into
4977 .Ql bxBxbx .
4979 In addition, the last line of a shell command's output may be inserted using
4980 .Ql #() .
4981 For example,
4982 .Ql #(uptime)
4983 will insert the system's uptime.
4984 When constructing formats,
4986 does not wait for
4987 .Ql #()
4988 commands to finish; instead, the previous result from running the same command is used,
4989 or a placeholder if the command has not been run before.
4990 If the command hasn't exited, the most recent line of output will be used, but the status
4991 line will not be updated more than once a second.
4992 Commands are executed with the
4994 global environment set (see the
4995 .Sx GLOBAL AND SESSION ENVIRONMENT
4996 section).
4999 .Ql l
5000 specifies that a string should be interpreted literally and not expanded.
5001 For example
5002 .Ql #{l:#{?pane_in_mode,yes,no}}
5003 will be replaced by
5004 .Ql #{?pane_in_mode,yes,no} .
5006 The following variables are available, where appropriate:
5007 .Bl -column "XXXXXXXXXXXXXXXXXXX" "XXXXX"
5008 .It Sy "Variable name" Ta Sy "Alias" Ta Sy "Replaced with"
5009 .It Li "active_window_index" Ta "" Ta "Index of active window in session"
5010 .It Li "alternate_on" Ta "" Ta "1 if pane is in alternate screen"
5011 .It Li "alternate_saved_x" Ta "" Ta "Saved cursor X in alternate screen"
5012 .It Li "alternate_saved_y" Ta "" Ta "Saved cursor Y in alternate screen"
5013 .It Li "buffer_created" Ta "" Ta "Time buffer created"
5014 .It Li "buffer_name" Ta "" Ta "Name of buffer"
5015 .It Li "buffer_sample" Ta "" Ta "Sample of start of buffer"
5016 .It Li "buffer_size" Ta "" Ta "Size of the specified buffer in bytes"
5017 .It Li "client_activity" Ta "" Ta "Time client last had activity"
5018 .It Li "client_cell_height" Ta "" Ta "Height of each client cell in pixels"
5019 .It Li "client_cell_width" Ta "" Ta "Width of each client cell in pixels"
5020 .It Li "client_control_mode" Ta "" Ta "1 if client is in control mode"
5021 .It Li "client_created" Ta "" Ta "Time client created"
5022 .It Li "client_discarded" Ta "" Ta "Bytes discarded when client behind"
5023 .It Li "client_flags" Ta "" Ta "List of client flags"
5024 .It Li "client_height" Ta "" Ta "Height of client"
5025 .It Li "client_key_table" Ta "" Ta "Current key table"
5026 .It Li "client_last_session" Ta "" Ta "Name of the client's last session"
5027 .It Li "client_name" Ta "" Ta "Name of client"
5028 .It Li "client_pid" Ta "" Ta "PID of client process"
5029 .It Li "client_prefix" Ta "" Ta "1 if prefix key has been pressed"
5030 .It Li "client_readonly" Ta "" Ta "1 if client is readonly"
5031 .It Li "client_session" Ta "" Ta "Name of the client's session"
5032 .It Li "client_termfeatures" Ta "" Ta "Terminal features of client, if any"
5033 .It Li "client_termname" Ta "" Ta "Terminal name of client"
5034 .It Li "client_termtype" Ta "" Ta "Terminal type of client, if available"
5035 .It Li "client_tty" Ta "" Ta "Pseudo terminal of client"
5036 .It Li "client_utf8" Ta "" Ta "1 if client supports UTF-8"
5037 .It Li "client_width" Ta "" Ta "Width of client"
5038 .It Li "client_written" Ta "" Ta "Bytes written to client"
5039 .It Li "command" Ta "" Ta "Name of command in use, if any"
5040 .It Li "command_list_alias" Ta "" Ta "Command alias if listing commands"
5041 .It Li "command_list_name" Ta "" Ta "Command name if listing commands"
5042 .It Li "command_list_usage" Ta "" Ta "Command usage if listing commands"
5043 .It Li "config_files" Ta "" Ta "List of configuration files loaded"
5044 .It Li "copy_cursor_line" Ta "" Ta "Line the cursor is on in copy mode"
5045 .It Li "copy_cursor_word" Ta "" Ta "Word under cursor in copy mode"
5046 .It Li "copy_cursor_x" Ta "" Ta "Cursor X position in copy mode"
5047 .It Li "copy_cursor_y" Ta "" Ta "Cursor Y position in copy mode"
5048 .It Li "current_file" Ta "" Ta "Current configuration file"
5049 .It Li "cursor_character" Ta "" Ta "Character at cursor in pane"
5050 .It Li "cursor_flag" Ta "" Ta "Pane cursor flag"
5051 .It Li "cursor_x" Ta "" Ta "Cursor X position in pane"
5052 .It Li "cursor_y" Ta "" Ta "Cursor Y position in pane"
5053 .It Li "history_bytes" Ta "" Ta "Number of bytes in window history"
5054 .It Li "history_limit" Ta "" Ta "Maximum window history lines"
5055 .It Li "history_size" Ta "" Ta "Size of history in lines"
5056 .It Li "hook" Ta "" Ta "Name of running hook, if any"
5057 .It Li "hook_client" Ta "" Ta "Name of client where hook was run, if any"
5058 .It Li "hook_pane" Ta "" Ta "ID of pane where hook was run, if any"
5059 .It Li "hook_session" Ta "" Ta "ID of session where hook was run, if any"
5060 .It Li "hook_session_name" Ta "" Ta "Name of session where hook was run, if any"
5061 .It Li "hook_window" Ta "" Ta "ID of window where hook was run, if any"
5062 .It Li "hook_window_name" Ta "" Ta "Name of window where hook was run, if any"
5063 .It Li "host" Ta "#H" Ta "Hostname of local host"
5064 .It Li "host_short" Ta "#h" Ta "Hostname of local host (no domain name)"
5065 .It Li "insert_flag" Ta "" Ta "Pane insert flag"
5066 .It Li "keypad_cursor_flag" Ta "" Ta "Pane keypad cursor flag"
5067 .It Li "keypad_flag" Ta "" Ta "Pane keypad flag"
5068 .It Li "last_window_index" Ta "" Ta "Index of last window in session"
5069 .It Li "line" Ta "" Ta "Line number in the list"
5070 .It Li "mouse_all_flag" Ta "" Ta "Pane mouse all flag"
5071 .It Li "mouse_any_flag" Ta "" Ta "Pane mouse any flag"
5072 .It Li "mouse_button_flag" Ta "" Ta "Pane mouse button flag"
5073 .It Li "mouse_line" Ta "" Ta "Line under mouse, if any"
5074 .It Li "mouse_sgr_flag" Ta "" Ta "Pane mouse SGR flag"
5075 .It Li "mouse_standard_flag" Ta "" Ta "Pane mouse standard flag"
5076 .It Li "mouse_utf8_flag" Ta "" Ta "Pane mouse UTF-8 flag"
5077 .It Li "mouse_word" Ta "" Ta "Word under mouse, if any"
5078 .It Li "mouse_x" Ta "" Ta "Mouse X position, if any"
5079 .It Li "mouse_y" Ta "" Ta "Mouse Y position, if any"
5080 .It Li "origin_flag" Ta "" Ta "Pane origin flag"
5081 .It Li "pane_active" Ta "" Ta "1 if active pane"
5082 .It Li "pane_at_bottom" Ta "" Ta "1 if pane is at the bottom of window"
5083 .It Li "pane_at_left" Ta "" Ta "1 if pane is at the left of window"
5084 .It Li "pane_at_right" Ta "" Ta "1 if pane is at the right of window"
5085 .It Li "pane_at_top" Ta "" Ta "1 if pane is at the top of window"
5086 .It Li "pane_bg" Ta "" Ta "Pane background colour"
5087 .It Li "pane_bottom" Ta "" Ta "Bottom of pane"
5088 .It Li "pane_current_command" Ta "" Ta "Current command if available"
5089 .It Li "pane_current_path" Ta "" Ta "Current path if available"
5090 .It Li "pane_dead" Ta "" Ta "1 if pane is dead"
5091 .It Li "pane_dead_status" Ta "" Ta "Exit status of process in dead pane"
5092 .It Li "pane_fg" Ta "" Ta "Pane foreground colour"
5093 .It Li "pane_format" Ta "" Ta "1 if format is for a pane"
5094 .It Li "pane_height" Ta "" Ta "Height of pane"
5095 .It Li "pane_id" Ta "#D" Ta "Unique pane ID"
5096 .It Li "pane_in_mode" Ta "" Ta "1 if pane is in a mode"
5097 .It Li "pane_index" Ta "#P" Ta "Index of pane"
5098 .It Li "pane_input_off" Ta "" Ta "1 if input to pane is disabled"
5099 .It Li "pane_last" Ta "" Ta "1 if last pane"
5100 .It Li "pane_left" Ta "" Ta "Left of pane"
5101 .It Li "pane_marked" Ta "" Ta "1 if this is the marked pane"
5102 .It Li "pane_marked_set" Ta "" Ta "1 if a marked pane is set"
5103 .It Li "pane_mode" Ta "" Ta "Name of pane mode, if any"
5104 .It Li "pane_path" Ta "" Ta "Path of pane (can be set by application)"
5105 .It Li "pane_pid" Ta "" Ta "PID of first process in pane"
5106 .It Li "pane_pipe" Ta "" Ta "1 if pane is being piped"
5107 .It Li "pane_right" Ta "" Ta "Right of pane"
5108 .It Li "pane_search_string" Ta "" Ta "Last search string in copy mode"
5109 .It Li "pane_start_command" Ta "" Ta "Command pane started with"
5110 .It Li "pane_synchronized" Ta "" Ta "1 if pane is synchronized"
5111 .It Li "pane_tabs" Ta "" Ta "Pane tab positions"
5112 .It Li "pane_title" Ta "#T" Ta "Title of pane (can be set by application)"
5113 .It Li "pane_top" Ta "" Ta "Top of pane"
5114 .It Li "pane_tty" Ta "" Ta "Pseudo terminal of pane"
5115 .It Li "pane_width" Ta "" Ta "Width of pane"
5116 .It Li "pid" Ta "" Ta "Server PID"
5117 .It Li "rectangle_toggle" Ta "" Ta "1 if rectangle selection is activated"
5118 .It Li "scroll_position" Ta "" Ta "Scroll position in copy mode"
5119 .It Li "scroll_region_lower" Ta "" Ta "Bottom of scroll region in pane"
5120 .It Li "scroll_region_upper" Ta "" Ta "Top of scroll region in pane"
5121 .It Li "search_match" Ta "" Ta "Search match if any"
5122 .It Li "search_present" Ta "" Ta "1 if search started in copy mode"
5123 .It Li "selection_active" Ta "" Ta "1 if selection started and changes with the cursor in copy mode"
5124 .It Li "selection_end_x" Ta "" Ta "X position of the end of the selection"
5125 .It Li "selection_end_y" Ta "" Ta "Y position of the end of the selection"
5126 .It Li "selection_present" Ta "" Ta "1 if selection started in copy mode"
5127 .It Li "selection_start_x" Ta "" Ta "X position of the start of the selection"
5128 .It Li "selection_start_y" Ta "" Ta "Y position of the start of the selection"
5129 .It Li "session_activity" Ta "" Ta "Time of session last activity"
5130 .It Li "session_alerts" Ta "" Ta "List of window indexes with alerts"
5131 .It Li "session_attached" Ta "" Ta "Number of clients session is attached to"
5132 .It Li "session_attached_list" Ta "" Ta "List of clients session is attached to"
5133 .It Li "session_created" Ta "" Ta "Time session created"
5134 .It Li "session_format" Ta "" Ta "1 if format is for a session"
5135 .It Li "session_group" Ta "" Ta "Name of session group"
5136 .It Li "session_group_attached" Ta "" Ta "Number of clients sessions in group are attached to"
5137 .It Li "session_group_attached_list" Ta "" Ta "List of clients sessions in group are attached to"
5138 .It Li "session_group_list" Ta "" Ta "List of sessions in group"
5139 .It Li "session_group_many_attached" Ta "" Ta "1 if multiple clients attached to sessions in group"
5140 .It Li "session_group_size" Ta "" Ta "Size of session group"
5141 .It Li "session_grouped" Ta "" Ta "1 if session in a group"
5142 .It Li "session_id" Ta "" Ta "Unique session ID"
5143 .It Li "session_last_attached" Ta "" Ta "Time session last attached"
5144 .It Li "session_many_attached" Ta "" Ta "1 if multiple clients attached"
5145 .It Li "session_marked" Ta "" Ta "1 if this session contains the marked pane"
5146 .It Li "session_name" Ta "#S" Ta "Name of session"
5147 .It Li "session_path" Ta "" Ta "Working directory of session"
5148 .It Li "session_stack" Ta "" Ta "Window indexes in most recent order"
5149 .It Li "session_windows" Ta "" Ta "Number of windows in session"
5150 .It Li "socket_path" Ta "" Ta "Server socket path"
5151 .It Li "start_time" Ta "" Ta "Server start time"
5152 .It Li "version" Ta "" Ta "Server version"
5153 .It Li "window_active" Ta "" Ta "1 if window active"
5154 .It Li "window_active_clients" Ta "" Ta "Number of clients viewing this window"
5155 .It Li "window_active_clients_list" Ta "" Ta "List of clients viewing this window"
5156 .It Li "window_active_sessions" Ta "" Ta "Number of sessions on which this window is active"
5157 .It Li "window_active_sessions_list" Ta "" Ta "List of sessions on which this window is active"
5158 .It Li "window_activity" Ta "" Ta "Time of window last activity"
5159 .It Li "window_activity_flag" Ta "" Ta "1 if window has activity"
5160 .It Li "window_bell_flag" Ta "" Ta "1 if window has bell"
5161 .It Li "window_bigger" Ta "" Ta "1 if window is larger than client"
5162 .It Li "window_cell_height" Ta "" Ta "Height of each cell in pixels"
5163 .It Li "window_cell_width" Ta "" Ta "Width of each cell in pixels"
5164 .It Li "window_end_flag" Ta "" Ta "1 if window has the highest index"
5165 .It Li "window_flags" Ta "#F" Ta "Window flags with # escaped as ##"
5166 .It Li "window_raw_flags" Ta "" Ta "Window flags with nothing escaped"
5167 .It Li "window_format" Ta "" Ta "1 if format is for a window"
5168 .It Li "window_height" Ta "" Ta "Height of window"
5169 .It Li "window_id" Ta "" Ta "Unique window ID"
5170 .It Li "window_index" Ta "#I" Ta "Index of window"
5171 .It Li "window_last_flag" Ta "" Ta "1 if window is the last used"
5172 .It Li "window_layout" Ta "" Ta "Window layout description, ignoring zoomed window panes"
5173 .It Li "window_linked" Ta "" Ta "1 if window is linked across sessions"
5174 .It Li "window_linked_sessions" Ta "" Ta "Number of sessions this window is linked to"
5175 .It Li "window_linked_sessions_list" Ta "" Ta "List of sessions this window is linked to"
5176 .It Li "window_marked_flag" Ta "" Ta "1 if window contains the marked pane"
5177 .It Li "window_name" Ta "#W" Ta "Name of window"
5178 .It Li "window_offset_x" Ta "" Ta "X offset into window if larger than client"
5179 .It Li "window_offset_y" Ta "" Ta "Y offset into window if larger than client"
5180 .It Li "window_panes" Ta "" Ta "Number of panes in window"
5181 .It Li "window_silence_flag" Ta "" Ta "1 if window has silence alert"
5182 .It Li "window_stack_index" Ta "" Ta "Index in session most recent stack"
5183 .It Li "window_start_flag" Ta "" Ta "1 if window has the lowest index"
5184 .It Li "window_visible_layout" Ta "" Ta "Window layout description, respecting zoomed window panes"
5185 .It Li "window_width" Ta "" Ta "Width of window"
5186 .It Li "window_zoomed_flag" Ta "" Ta "1 if window is zoomed"
5187 .It Li "wrap_flag" Ta "" Ta "Pane wrap flag"
5189 .Sh STYLES
5191 offers various options to specify the colour and attributes of aspects of the
5192 interface, for example
5193 .Ic status-style
5194 for the status line.
5195 In addition, embedded styles may be specified in format options, such as
5196 .Ic status-left ,
5197 by enclosing them in
5198 .Ql #[
5200 .Ql \&] .
5202 A style may be the single term
5203 .Ql default
5204 to specify the default style (which may come from an option, for example
5205 .Ic status-style
5206 in the status line) or a space
5207 or comma separated list of the following:
5208 .Bl -tag -width Ds
5209 .It Ic fg=colour
5210 Set the foreground colour.
5211 The colour is one of:
5212 .Ic black ,
5213 .Ic red ,
5214 .Ic green ,
5215 .Ic yellow ,
5216 .Ic blue ,
5217 .Ic magenta ,
5218 .Ic cyan ,
5219 .Ic white ;
5220 if supported the bright variants
5221 .Ic brightred ,
5222 .Ic brightgreen ,
5223 .Ic brightyellow ;
5224 .Ic colour0
5226 .Ic colour255
5227 from the 256-colour set;
5228 .Ic default
5229 for the default colour;
5230 .Ic terminal
5231 for the terminal default colour; or a hexadecimal RGB string such as
5232 .Ql #ffffff .
5233 .It Ic bg=colour
5234 Set the background colour.
5235 .It Ic none
5236 Set no attributes (turn off any active attributes).
5237 .It Xo Ic acs ,
5238 .Ic bright
5240 .Ic bold ) ,
5241 .Ic dim ,
5242 .Ic underscore ,
5243 .Ic blink ,
5244 .Ic reverse ,
5245 .Ic hidden ,
5246 .Ic italics ,
5247 .Ic overline ,
5248 .Ic strikethrough ,
5249 .Ic double-underscore ,
5250 .Ic curly-underscore ,
5251 .Ic dotted-underscore ,
5252 .Ic dashed-underscore
5254 Set an attribute.
5255 Any of the attributes may be prefixed with
5256 .Ql no
5257 to unset.
5258 .Ic acs
5259 is the terminal alternate character set.
5260 .It Xo Ic align=left
5262 .Ic noalign ) ,
5263 .Ic align=centre ,
5264 .Ic align=right
5266 Align text to the left, centre or right of the available space if appropriate.
5267 .It Ic fill=colour
5268 Fill the available space with a background colour if appropriate.
5269 .It Xo Ic list=on ,
5270 .Ic list=focus ,
5271 .Ic list=left-marker ,
5272 .Ic list=right-marker ,
5273 .Ic nolist
5275 Mark the position of the various window list components in the
5276 .Ic status-format
5277 option:
5278 .Ic list=on
5279 marks the start of the list;
5280 .Ic list=focus
5281 is the part of the list that should be kept in focus if the entire list won't fit
5282 in the available space (typically the current window);
5283 .Ic list=left-marker
5285 .Ic list=right-marker
5286 mark the text to be used to mark that text has been trimmed from the left or
5287 right of the list if there is not enough space.
5288 .It Xo Ic push-default ,
5289 .Ic pop-default
5291 Store the current colours and attributes as the default or reset to the previous
5292 default.
5294 .Ic push-default
5295 affects any subsequent use of the
5296 .Ic default
5297 term until a
5298 .Ic pop-default .
5299 Only one default may be pushed (each
5300 .Ic push-default
5301 replaces the previous saved default).
5302 .It Xo Ic range=left ,
5303 .Ic range=right ,
5304 .Ic range=window|X ,
5305 .Ic norange
5307 Mark a range in the
5308 .Ic status-format
5309 option.
5310 .Ic range=left
5312 .Ic range=right
5313 are the text used for the
5314 .Ql StatusLeft
5316 .Ql StatusRight
5317 mouse keys.
5318 .Ic range=window|X
5319 is the range for a window passed to the
5320 .Ql Status
5321 mouse key, where
5322 .Ql X
5323 is a window index.
5326 Examples are:
5327 .Bd -literal -offset indent
5328 fg=yellow bold underscore blink
5329 bg=black,fg=default,noreverse
5331 .Sh NAMES AND TITLES
5333 distinguishes between names and titles.
5334 Windows and sessions have names, which may be used to specify them in targets
5335 and are displayed in the status line and various lists: the name is the
5337 identifier for a window or session.
5338 Only panes have titles.
5339 A pane's title is typically set by the program running inside the pane using
5340 an escape sequence (like it would set the
5341 .Xr xterm 1
5342 window title in
5343 .Xr X 7 ) .
5344 Windows themselves do not have titles - a window's title is the title of its
5345 active pane.
5347 itself may set the title of the terminal in which the client is running, see
5349 .Ic set-titles
5350 option.
5352 A session's name is set with the
5353 .Ic new-session
5355 .Ic rename-session
5356 commands.
5357 A window's name is set with one of:
5358 .Bl -enum -width Ds
5360 A command argument (such as
5361 .Fl n
5363 .Ic new-window
5365 .Ic new-session ) .
5367 An escape sequence (if the
5368 .Ic allow-rename
5369 option is turned on):
5370 .Bd -literal -offset indent
5371 $ printf '\e033kWINDOW_NAME\e033\e\e'
5374 Automatic renaming, which sets the name to the active command in the window's
5375 active pane.
5376 See the
5377 .Ic automatic-rename
5378 option.
5381 When a pane is first created, its title is the hostname.
5382 A pane's title can be set via the title setting escape sequence, for example:
5383 .Bd -literal -offset indent
5384 $ printf '\e033]2;My Title\e033\e\e'
5387 It can also be modified with the
5388 .Ic select-pane
5389 .Fl T
5390 command.
5391 .Sh GLOBAL AND SESSION ENVIRONMENT
5392 When the server is started,
5394 copies the environment into the
5395 .Em global environment ;
5396 in addition, each session has a
5397 .Em session environment .
5398 When a window is created, the session and global environments are merged.
5399 If a variable exists in both, the value from the session environment is used.
5400 The result is the initial environment passed to the new process.
5403 .Ic update-environment
5404 session option may be used to update the session environment from the client
5405 when a new session is created or an old reattached.
5407 also initialises the
5408 .Ev TMUX
5409 variable with some internal information to allow commands to be executed
5410 from inside, and the
5411 .Ev TERM
5412 variable with the correct terminal setting of
5413 .Ql screen .
5415 Variables in both session and global environments may be marked as hidden.
5416 Hidden variables are not passed into the environment of new processes and
5417 instead can only be used by tmux itself (for example in formats, see the
5418 .Sx FORMATS
5419 section).
5421 Commands to alter and view the environment are:
5422 .Bl -tag -width Ds
5423 .Tg setenv
5424 .It Xo Ic set-environment
5425 .Op Fl Fhgru
5426 .Op Fl t Ar target-session
5427 .Ar name Op Ar value
5429 .D1 Pq alias: Ic setenv
5430 Set or unset an environment variable.
5432 .Fl g
5433 is used, the change is made in the global environment; otherwise, it is applied
5434 to the session environment for
5435 .Ar target-session .
5437 .Fl F
5438 is present, then
5439 .Ar value
5440 is expanded as a format.
5442 .Fl u
5443 flag unsets a variable.
5444 .Fl r
5445 indicates the variable is to be removed from the environment before starting a
5446 new process.
5447 .Fl h
5448 marks the variable as hidden.
5449 .Tg showenv
5450 .It Xo Ic show-environment
5451 .Op Fl hgs
5452 .Op Fl t Ar target-session
5453 .Op Ar variable
5455 .D1 Pq alias: Ic showenv
5456 Display the environment for
5457 .Ar target-session
5458 or the global environment with
5459 .Fl g .
5461 .Ar variable
5462 is omitted, all variables are shown.
5463 Variables removed from the environment are prefixed with
5464 .Ql - .
5466 .Fl s
5467 is used, the output is formatted as a set of Bourne shell commands.
5468 .Fl h
5469 shows hidden variables (omitted by default).
5471 .Sh STATUS LINE
5473 includes an optional status line which is displayed in the bottom line of each
5474 terminal.
5476 By default, the status line is enabled and one line in height (it may be
5477 disabled or made multiple lines with the
5478 .Ic status
5479 session option) and contains, from left-to-right: the name of the current
5480 session in square brackets; the window list; the title of the active pane
5481 in double quotes; and the time and date.
5483 Each line of the status line is configured with the
5484 .Ic status-format
5485 option.
5486 The default is made of three parts: configurable left and right sections (which
5487 may contain dynamic content such as the time or output from a shell command,
5488 see the
5489 .Ic status-left ,
5490 .Ic status-left-length ,
5491 .Ic status-right ,
5493 .Ic status-right-length
5494 options below), and a central window list.
5495 By default, the window list shows the index, name and (if any) flag of the
5496 windows present in the current session in ascending numerical order.
5497 It may be customised with the
5498 .Ar window-status-format
5500 .Ar window-status-current-format
5501 options.
5502 The flag is one of the following symbols appended to the window name:
5503 .Bl -column "Symbol" "Meaning" -offset indent
5504 .It Sy "Symbol" Ta Sy "Meaning"
5505 .It Li "*" Ta "Denotes the current window."
5506 .It Li "-" Ta "Marks the last window (previously selected)."
5507 .It Li "#" Ta "Window activity is monitored and activity has been detected."
5508 .It Li "\&!" Ta "Window bells are monitored and a bell has occurred in the window."
5509 .It Li "~" Ta "The window has been silent for the monitor-silence interval."
5510 .It Li "M" Ta "The window contains the marked pane."
5511 .It Li "Z" Ta "The window's active pane is zoomed."
5514 The # symbol relates to the
5515 .Ic monitor-activity
5516 window option.
5517 The window name is printed in inverted colours if an alert (bell, activity or
5518 silence) is present.
5520 The colour and attributes of the status line may be configured, the entire
5521 status line using the
5522 .Ic status-style
5523 session option and individual windows using the
5524 .Ic window-status-style
5525 window option.
5527 The status line is automatically refreshed at interval if it has changed, the
5528 interval may be controlled with the
5529 .Ic status-interval
5530 session option.
5532 Commands related to the status line are as follows:
5533 .Bl -tag -width Ds
5534 .Tg clrphist
5535 .It Xo Ic clear-prompt-history
5536 .Op Fl T Ar prompt-type
5538 .D1 Pq alias: Ic clrphist
5539 Clear status prompt history for prompt type
5540 .Ar prompt-type .
5542 .Fl T
5543 is omitted, then clear history for all types.
5545 .Ic command-prompt
5546 for possible values for
5547 .Ar prompt-type .
5548 .It Xo Ic command-prompt
5549 .Op Fl 1bFikN
5550 .Op Fl I Ar inputs
5551 .Op Fl p Ar prompts
5552 .Op Fl t Ar target-client
5553 .Op Fl T Ar prompt-type
5554 .Op Ar template
5556 Open the command prompt in a client.
5557 This may be used from inside
5559 to execute commands interactively.
5562 .Ar template
5563 is specified, it is used as the command.
5564 With
5565 .Fl F ,
5566 .Ar template
5567 is expanded as a format.
5569 If present,
5570 .Fl I
5571 is a comma-separated list of the initial text for each prompt.
5573 .Fl p
5574 is given,
5575 .Ar prompts
5576 is a comma-separated list of prompts which are displayed in order; otherwise
5577 a single prompt is displayed, constructed from
5578 .Ar template
5579 if it is present, or
5580 .Ql \&:
5581 if not.
5583 Before the command is executed, the first occurrence of the string
5584 .Ql %%
5585 and all occurrences of
5586 .Ql %1
5587 are replaced by the response to the first prompt, all
5588 .Ql %2
5589 are replaced with the response to the second prompt, and so on for further
5590 prompts.
5591 Up to nine prompt responses may be replaced
5593 .Ql %1
5595 .Ql %9
5596 .Pc .
5597 .Ql %%%
5598 is like
5599 .Ql %%
5600 but any quotation marks are escaped.
5602 .Fl 1
5603 makes the prompt only accept one key press, in this case the resulting input
5604 is a single character.
5605 .Fl k
5606 is like
5607 .Fl 1
5608 but the key press is translated to a key name.
5609 .Fl N
5610 makes the prompt only accept numeric key presses.
5611 .Fl i
5612 executes the command every time the prompt input changes instead of when the
5613 user exits the command prompt.
5615 .Fl T
5616 tells
5618 the prompt type.
5619 This affects what completions are offered when
5620 .Em Tab
5621 is pressed.
5622 Available types are:
5623 .Ql command ,
5624 .Ql search ,
5625 .Ql target
5627 .Ql window-target .
5629 The following keys have a special meaning in the command prompt, depending
5630 on the value of the
5631 .Ic status-keys
5632 option:
5633 .Bl -column "FunctionXXXXXXXXXXXXXXXXXXXXXXXXX" "viXXXX" "emacsX" -offset indent
5634 .It Sy "Function" Ta Sy "vi" Ta Sy "emacs"
5635 .It Li "Cancel command prompt" Ta "q" Ta "Escape"
5636 .It Li "Delete from cursor to start of word" Ta "" Ta "C-w"
5637 .It Li "Delete entire command" Ta "d" Ta "C-u"
5638 .It Li "Delete from cursor to end" Ta "D" Ta "C-k"
5639 .It Li "Execute command" Ta "Enter" Ta "Enter"
5640 .It Li "Get next command from history" Ta "" Ta "Down"
5641 .It Li "Get previous command from history" Ta "" Ta "Up"
5642 .It Li "Insert top paste buffer" Ta "p" Ta "C-y"
5643 .It Li "Look for completions" Ta "Tab" Ta "Tab"
5644 .It Li "Move cursor left" Ta "h" Ta "Left"
5645 .It Li "Move cursor right" Ta "l" Ta "Right"
5646 .It Li "Move cursor to end" Ta "$" Ta "C-e"
5647 .It Li "Move cursor to next word" Ta "w" Ta "M-f"
5648 .It Li "Move cursor to previous word" Ta "b" Ta "M-b"
5649 .It Li "Move cursor to start" Ta "0" Ta "C-a"
5650 .It Li "Transpose characters" Ta "" Ta "C-t"
5653 With
5654 .Fl b ,
5655 the prompt is shown in the background and the invoking client does not exit
5656 until it is dismissed.
5657 .Tg confirm
5658 .It Xo Ic confirm-before
5659 .Op Fl b
5660 .Op Fl p Ar prompt
5661 .Op Fl t Ar target-client
5662 .Ar command
5664 .D1 Pq alias: Ic confirm
5665 Ask for confirmation before executing
5666 .Ar command .
5668 .Fl p
5669 is given,
5670 .Ar prompt
5671 is the prompt to display; otherwise a prompt is constructed from
5672 .Ar command .
5673 It may contain the special character sequences supported by the
5674 .Ic status-left
5675 option.
5676 With
5677 .Fl b ,
5678 the prompt is shown in the background and the invoking client does not exit
5679 until it is dismissed.
5680 .Tg menu
5681 .It Xo Ic display-menu
5682 .Op Fl O
5683 .Op Fl c Ar target-client
5684 .Op Fl t Ar target-pane
5685 .Op Fl T Ar title
5686 .Op Fl x Ar position
5687 .Op Fl y Ar position
5688 .Ar name
5689 .Ar key
5690 .Ar command
5691 .Ar ...
5693 .D1 Pq alias: Ic menu
5694 Display a menu on
5695 .Ar target-client .
5696 .Ar target-pane
5697 gives the target for any commands run from the menu.
5699 A menu is passed as a series of arguments: first the menu item name,
5700 second the key shortcut (or empty for none) and third the command
5701 to run when the menu item is chosen.
5702 The name and command are formats, see the
5703 .Sx FORMATS
5705 .Sx STYLES
5706 sections.
5707 If the name begins with a hyphen (-), then the item is disabled (shown dim) and
5708 may not be chosen.
5709 The name may be empty for a separator line, in which case both the key and
5710 command should be omitted.
5712 .Fl T
5713 is a format for the menu title (see
5714 .Sx FORMATS ) .
5716 .Fl x
5718 .Fl y
5719 give the position of the menu.
5720 Both may be a row or column number, or one of the following special values:
5721 .Bl -column "XXXXX" "XXXX" -offset indent
5722 .It Sy "Value" Ta Sy "Flag" Ta Sy "Meaning"
5723 .It Li "C" Ta "Both" Ta "The centre of the terminal"
5724 .It Li "R" Ta Fl x Ta "The right side of the terminal"
5725 .It Li "P" Ta "Both" Ta "The bottom left of the pane"
5726 .It Li "M" Ta "Both" Ta "The mouse position"
5727 .It Li "W" Ta "Both" Ta "The window position on the status line"
5728 .It Li "S" Ta Fl y Ta "The line above or below the status line"
5731 Or a format, which is expanded including the following additional variables:
5732 .Bl -column "XXXXXXXXXXXXXXXXXXXXXXXXXX" -offset indent
5733 .It Sy "Variable name" Ta Sy "Replaced with"
5734 .It Li "popup_centre_x" Ta "Centered in the client"
5735 .It Li "popup_centre_y" Ta "Centered in the client"
5736 .It Li "popup_height" Ta "Height of menu or popup"
5737 .It Li "popup_mouse_bottom" Ta "Bottom of at the mouse"
5738 .It Li "popup_mouse_centre_x" Ta "Horizontal centre at the mouse"
5739 .It Li "popup_mouse_centre_y" Ta "Vertical centre at the mouse"
5740 .It Li "popup_mouse_top" Ta "Top at the mouse"
5741 .It Li "popup_mouse_x" Ta "Mouse X position"
5742 .It Li "popup_mouse_y" Ta "Mouse Y position"
5743 .It Li "popup_pane_bottom" Ta "Bottom of the pane"
5744 .It Li "popup_pane_left" Ta "Left of the pane"
5745 .It Li "popup_pane_right" Ta "Right of the pane"
5746 .It Li "popup_pane_top" Ta "Top of the pane"
5747 .It Li "popup_status_line_y" Ta "Above or below the status line"
5748 .It Li "popup_width" Ta "Width of menu or popup"
5749 .It Li "popup_window_status_line_x" Ta "At the window position in status line"
5750 .It Li "popup_window_status_line_y" Ta "At the status line showing the window"
5753 Each menu consists of items followed by a key shortcut shown in brackets.
5754 If the menu is too large to fit on the terminal, it is not displayed.
5755 Pressing the key shortcut chooses the corresponding item.
5756 If the mouse is enabled and the menu is opened from a mouse key binding,
5757 releasing the mouse button with an item selected chooses that item and
5758 releasing the mouse button without an item selected closes the menu.
5759 .Fl O
5760 changes this behaviour so that the menu does not close when the mouse button is
5761 released without an item selected the menu is not closed and a mouse button
5762 must be clicked to choose an item.
5764 The following keys are also available:
5765 .Bl -column "Key" "Function" -offset indent
5766 .It Sy "Key" Ta Sy "Function"
5767 .It Li "Enter" Ta "Choose selected item"
5768 .It Li "Up" Ta "Select previous item"
5769 .It Li "Down" Ta "Select next item"
5770 .It Li "q" Ta "Exit menu"
5772 .Tg display
5773 .It Xo Ic display-message
5774 .Op Fl aINpv
5775 .Op Fl c Ar target-client
5776 .Op Fl d Ar delay
5777 .Op Fl t Ar target-pane
5778 .Op Ar message
5780 .D1 Pq alias: Ic display
5781 Display a message.
5783 .Fl p
5784 is given, the output is printed to stdout, otherwise it is displayed in the
5785 .Ar target-client
5786 status line for up to
5787 .Ar delay
5788 milliseconds.
5790 .Ar delay
5791 is not given, the
5792 .Ic message-time
5793 option is used; a delay of zero waits for a key press.
5794 .Ql N
5795 ignores key presses and closes only after the delay expires.
5796 The format of
5797 .Ar message
5798 is described in the
5799 .Sx FORMATS
5800 section; information is taken from
5801 .Ar target-pane
5803 .Fl t
5804 is given, otherwise the active pane.
5806 .Fl v
5807 prints verbose logging as the format is parsed and
5808 .Fl a
5809 lists the format variables and their values.
5811 .Fl I
5812 forwards any input read from stdin to the empty pane given by
5813 .Ar target-pane .
5814 .Tg popup
5815 .It Xo Ic display-popup
5816 .Op Fl BCE
5817 .Op Fl b Ar border-lines
5818 .Op Fl c Ar target-client
5819 .Op Fl d Ar start-directory
5820 .Op Fl e Ar environment
5821 .Op Fl h Ar height
5822 .Op Fl s Ar style
5823 .Op Fl S Ar border-style
5824 .Op Fl t Ar target-pane
5825 .Op Fl T Ar title
5826 .Op Fl w Ar width
5827 .Op Fl x Ar position
5828 .Op Fl y Ar position
5829 .Op Ar shell-command
5831 .D1 Pq alias: Ic popup
5832 Display a popup running
5833 .Ar shell-command
5835 .Ar target-client .
5836 A popup is a rectangular box drawn over the top of any panes.
5837 Panes are not updated while a popup is present.
5839 .Fl E
5840 closes the popup automatically when
5841 .Ar shell-command
5842 exits.
5844 .Fl E
5845 closes the popup only if
5846 .Ar shell-command
5847 exited with success.
5849 .Fl x
5851 .Fl y
5852 give the position of the popup, they have the same meaning as for the
5853 .Ic display-menu
5854 command.
5855 .Fl w
5857 .Fl h
5858 give the width and height - both may be a percentage (followed by
5859 .Ql % ) .
5860 If omitted, half of the terminal size is used.
5862 .Fl B
5863 does not surround the popup by a border.
5865 .Fl b
5866 sets the type of border line for the popup.
5867 When
5868 .Fl B
5869 is specified the
5870 .Fl b
5871 option is ignored.
5873 .Ic popup-border-lines
5874 for possible values for
5875 .Ar border-lines .
5877 .Fl s
5878 sets the style for the popup and
5879 .Fl S
5880 sets the style for the popup border.
5881 For how to specify
5882 .Ar style ,
5883 see the
5884 .Sx STYLES
5885 section.
5887 .Fl e
5888 takes the form
5889 .Ql VARIABLE=value
5890 and sets an environment variable for the popup; it may be specified multiple
5891 times.
5893 .Fl T
5894 is a format for the popup title (see
5895 .Sx FORMATS ) .
5898 .Fl C
5899 flag closes any popup on the client.
5900 .Tg showphist
5901 .It Xo Ic show-prompt-history
5902 .Op Fl T Ar prompt-type
5904 .D1 Pq alias: Ic showphist
5905 Display status prompt history for prompt type
5906 .Ar prompt-type .
5908 .Fl T
5909 is omitted, then show history for all types.
5911 .Ic command-prompt
5912 for possible values for
5913 .Ar prompt-type .
5915 .Sh BUFFERS
5917 maintains a set of named
5918 .Em paste buffers .
5919 Each buffer may be either explicitly or automatically named.
5920 Explicitly named buffers are named when created with the
5921 .Ic set-buffer
5923 .Ic load-buffer
5924 commands, or by renaming an automatically named buffer with
5925 .Ic set-buffer
5926 .Fl n .
5927 Automatically named buffers are given a name such as
5928 .Ql buffer0001 ,
5929 .Ql buffer0002
5930 and so on.
5931 When the
5932 .Ic buffer-limit
5933 option is reached, the oldest automatically named buffer is deleted.
5934 Explicitly named buffers are not subject to
5935 .Ic buffer-limit
5936 and may be deleted with the
5937 .Ic delete-buffer
5938 command.
5940 Buffers may be added using
5941 .Ic copy-mode
5942 or the
5943 .Ic set-buffer
5945 .Ic load-buffer
5946 commands, and pasted into a window using the
5947 .Ic paste-buffer
5948 command.
5949 If a buffer command is used and no buffer is specified, the most
5950 recently added automatically named buffer is assumed.
5952 A configurable history buffer is also maintained for each window.
5953 By default, up to 2000 lines are kept; this can be altered with the
5954 .Ic history-limit
5955 option (see the
5956 .Ic set-option
5957 command above).
5959 The buffer commands are as follows:
5960 .Bl -tag -width Ds
5961 .It Xo
5962 .Ic choose-buffer
5963 .Op Fl NZr
5964 .Op Fl F Ar format
5965 .Op Fl f Ar filter
5966 .Op Fl K Ar key-format
5967 .Op Fl O Ar sort-order
5968 .Op Fl t Ar target-pane
5969 .Op Ar template
5971 Put a pane into buffer mode, where a buffer may be chosen interactively from
5972 a list.
5973 Each buffer is shown on one line.
5974 A shortcut key is shown on the left in brackets allowing for immediate choice,
5975 or the list may be navigated and an item chosen or otherwise manipulated using
5976 the keys below.
5977 .Fl Z
5978 zooms the pane.
5979 The following keys may be used in buffer mode:
5980 .Bl -column "Key" "Function" -offset indent
5981 .It Sy "Key" Ta Sy "Function"
5982 .It Li "Enter" Ta "Paste selected buffer"
5983 .It Li "Up" Ta "Select previous buffer"
5984 .It Li "Down" Ta "Select next buffer"
5985 .It Li "C-s" Ta "Search by name or content"
5986 .It Li "n" Ta "Repeat last search"
5987 .It Li "t" Ta "Toggle if buffer is tagged"
5988 .It Li "T" Ta "Tag no buffers"
5989 .It Li "C-t" Ta "Tag all buffers"
5990 .It Li "p" Ta "Paste selected buffer"
5991 .It Li "P" Ta "Paste tagged buffers"
5992 .It Li "d" Ta "Delete selected buffer"
5993 .It Li "D" Ta "Delete tagged buffers"
5994 .It Li "e" Ta "Open the buffer in an editor"
5995 .It Li "f" Ta "Enter a format to filter items"
5996 .It Li "O" Ta "Change sort field"
5997 .It Li "r" Ta "Reverse sort order"
5998 .It Li "v" Ta "Toggle preview"
5999 .It Li "q" Ta "Exit mode"
6002 After a buffer is chosen,
6003 .Ql %%
6004 is replaced by the buffer name in
6005 .Ar template
6006 and the result executed as a command.
6008 .Ar template
6009 is not given, "paste-buffer -b '%%'" is used.
6011 .Fl O
6012 specifies the initial sort field: one of
6013 .Ql time ,
6014 .Ql name
6016 .Ql size .
6017 .Fl r
6018 reverses the sort order.
6019 .Fl f
6020 specifies an initial filter: the filter is a format - if it evaluates to zero,
6021 the item in the list is not shown, otherwise it is shown.
6022 If a filter would lead to an empty list, it is ignored.
6023 .Fl F
6024 specifies the format for each item in the list and
6025 .Fl K
6026 a format for each shortcut key; both are evaluated once for each line.
6027 .Fl N
6028 starts without the preview.
6029 This command works only if at least one client is attached.
6030 .Tg clearhist
6031 .It Ic clear-history Op Fl t Ar target-pane
6032 .D1 Pq alias: Ic clearhist
6033 Remove and free the history for the specified pane.
6034 .Tg deleteb
6035 .It Ic delete-buffer Op Fl b Ar buffer-name
6036 .D1 Pq alias: Ic deleteb
6037 Delete the buffer named
6038 .Ar buffer-name ,
6039 or the most recently added automatically named buffer if not specified.
6040 .Tg lsb
6041 .It Xo Ic list-buffers
6042 .Op Fl F Ar format
6043 .Op Fl f Ar filter
6045 .D1 Pq alias: Ic lsb
6046 List the global buffers.
6047 .Fl F
6048 specifies the format of each line and
6049 .Fl f
6050 a filter.
6051 Only buffers for which the filter is true are shown.
6052 See the
6053 .Sx FORMATS
6054 section.
6055 .It Xo Ic load-buffer
6056 .Op Fl w
6057 .Op Fl b Ar buffer-name
6058 .Op Fl t Ar target-client
6059 .Ar path
6061 .Tg loadb
6062 .D1 Pq alias: Ic loadb
6063 Load the contents of the specified paste buffer from
6064 .Ar path .
6066 .Fl w
6067 is given, the buffer is also sent to the clipboard for
6068 .Ar target-client
6069 using the
6070 .Xr xterm 1
6071 escape sequence, if possible.
6072 .Tg pasteb
6073 .It Xo Ic paste-buffer
6074 .Op Fl dpr
6075 .Op Fl b Ar buffer-name
6076 .Op Fl s Ar separator
6077 .Op Fl t Ar target-pane
6079 .D1 Pq alias: Ic pasteb
6080 Insert the contents of a paste buffer into the specified pane.
6081 If not specified, paste into the current one.
6082 With
6083 .Fl d ,
6084 also delete the paste buffer.
6085 When output, any linefeed (LF) characters in the paste buffer are replaced with
6086 a separator, by default carriage return (CR).
6087 A custom separator may be specified using the
6088 .Fl s
6089 flag.
6091 .Fl r
6092 flag means to do no replacement (equivalent to a separator of LF).
6094 .Fl p
6095 is specified, paste bracket control codes are inserted around the
6096 buffer if the application has requested bracketed paste mode.
6097 .Tg saveb
6098 .It Xo Ic save-buffer
6099 .Op Fl a
6100 .Op Fl b Ar buffer-name
6101 .Ar path
6103 .D1 Pq alias: Ic saveb
6104 Save the contents of the specified paste buffer to
6105 .Ar path .
6107 .Fl a
6108 option appends to rather than overwriting the file.
6109 .It Xo Ic set-buffer
6110 .Op Fl aw
6111 .Op Fl b Ar buffer-name
6112 .Op Fl t Ar target-client
6113 .Tg setb
6114 .Op Fl n Ar new-buffer-name
6115 .Ar data
6117 .D1 Pq alias: Ic setb
6118 Set the contents of the specified buffer to
6119 .Ar data .
6121 .Fl w
6122 is given, the buffer is also sent to the clipboard for
6123 .Ar target-client
6124 using the
6125 .Xr xterm 1
6126 escape sequence, if possible.
6128 .Fl a
6129 option appends to rather than overwriting the buffer.
6131 .Fl n
6132 option renames the buffer to
6133 .Ar new-buffer-name .
6134 .Tg showb
6135 .It Xo Ic show-buffer
6136 .Op Fl b Ar buffer-name
6138 .D1 Pq alias: Ic showb
6139 Display the contents of the specified buffer.
6141 .Sh MISCELLANEOUS
6142 Miscellaneous commands are as follows:
6143 .Bl -tag -width Ds
6144 .It Ic clock-mode Op Fl t Ar target-pane
6145 Display a large clock.
6146 .Tg if
6147 .It Xo Ic if-shell
6148 .Op Fl bF
6149 .Op Fl t Ar target-pane
6150 .Ar shell-command command
6151 .Op Ar command
6153 .D1 Pq alias: Ic if
6154 Execute the first
6155 .Ar command
6157 .Ar shell-command
6158 returns success or the second
6159 .Ar command
6160 otherwise.
6161 Before being executed,
6162 .Ar shell-command
6163 is expanded using the rules specified in the
6164 .Sx FORMATS
6165 section, including those relevant to
6166 .Ar target-pane .
6167 With
6168 .Fl b ,
6169 .Ar shell-command
6170 is run in the background.
6173 .Fl F
6174 is given,
6175 .Ar shell-command
6176 is not executed but considered success if neither empty nor zero (after formats
6177 are expanded).
6178 .Tg lock
6179 .It Ic lock-server
6180 .D1 Pq alias: Ic lock
6181 Lock each client individually by running the command specified by the
6182 .Ic lock-command
6183 option.
6184 .Tg run
6185 .It Xo Ic run-shell
6186 .Op Fl bC
6187 .Op Fl d Ar delay
6188 .Op Fl t Ar target-pane
6189 .Op Ar shell-command
6191 .D1 Pq alias: Ic run
6192 Execute
6193 .Ar shell-command
6194 or (with
6195 .Fl C )
6198 command in the background without creating a window.
6199 Before being executed,
6200 .Ar shell-command
6201 is expanded using the rules specified in the
6202 .Sx FORMATS
6203 section.
6204 With
6205 .Fl b ,
6206 the command is run in the background.
6207 .Fl d
6208 waits for
6209 .Ar delay
6210 seconds before starting the command.
6212 .Fl C
6213 is not given, any output to stdout is displayed in view mode (in the pane
6214 specified by
6215 .Fl t
6216 or the current pane if omitted) after the command finishes.
6217 If the command fails, the exit status is also displayed.
6218 .Tg wait
6219 .It Xo Ic wait-for
6220 .Op Fl L | S | U
6221 .Ar channel
6223 .D1 Pq alias: Ic wait
6224 When used without options, prevents the client from exiting until woken using
6225 .Ic wait-for
6226 .Fl S
6227 with the same channel.
6228 When
6229 .Fl L
6230 is used, the channel is locked and any clients that try to lock the same
6231 channel are made to wait until the channel is unlocked with
6232 .Ic wait-for
6233 .Fl U .
6235 .Sh EXIT MESSAGES
6236 When a
6238 client detaches, it prints a message.
6239 This may be one of:
6240 .Bl -tag -width Ds
6241 .It detached (from session ...)
6242 The client was detached normally.
6243 .It detached and SIGHUP
6244 The client was detached and its parent sent the
6245 .Dv SIGHUP
6246 signal (for example with
6247 .Ic detach-client
6248 .Fl P ) .
6249 .It lost tty
6250 The client's
6251 .Xr tty 4
6253 .Xr pty 4
6254 was unexpectedly destroyed.
6255 .It terminated
6256 The client was killed with
6257 .Dv SIGTERM .
6258 .It too far behind
6259 The client is in control mode and became unable to keep up with the data from
6260 .Nm .
6261 .It exited
6262 The server exited when it had no sessions.
6263 .It server exited
6264 The server exited when it received
6265 .Dv SIGTERM .
6266 .It server exited unexpectedly
6267 The server crashed or otherwise exited without telling the client the reason.
6269 .Sh TERMINFO EXTENSIONS
6271 understands some unofficial extensions to
6272 .Xr terminfo 5 .
6273 It is not normally necessary to set these manually, instead the
6274 .Ic terminal-features
6275 option should be used.
6276 .Bl -tag -width Ds
6277 .It Em \&AX
6278 An existing extension that tells
6280 the terminal supports default colours.
6281 .It Em \&Bidi
6282 Tell
6284 that the terminal supports the VTE bidirectional text extensions.
6285 .It Em \&Cs , Cr
6286 Set the cursor colour.
6287 The first takes a single string argument and is used to set the colour;
6288 the second takes no arguments and restores the default cursor colour.
6289 If set, a sequence such as this may be used
6290 to change the cursor colour from inside
6291 .Nm :
6292 .Bd -literal -offset indent
6293 $ printf '\e033]12;red\e033\e\e'
6296 The colour is an
6297 .Xr X 7
6298 colour, see
6299 .Xr XParseColor 3 .
6300 .It Em \&Cmg, \&Clmg, \&Dsmg , \&Enmg
6301 Set, clear, disable or enable DECSLRM margins.
6302 These are set automatically if the terminal reports it is
6303 .Em VT420
6304 compatible.
6305 .It Em \&Dsbp , \&Enbp
6306 Disable and enable bracketed paste.
6307 These are set automatically if the
6308 .Em XT
6309 capability is present.
6310 .It Em \&Dseks , \&Eneks
6311 Disable and enable extended keys.
6312 .It Em \&Dsfcs , \&Enfcs
6313 Disable and enable focus reporting.
6314 These are set automatically if the
6315 .Em XT
6316 capability is present.
6317 .It Em \&Rect
6318 Tell
6320 that the terminal supports rectangle operations.
6321 .It Em \&Smol
6322 Enable the overline attribute.
6323 .It Em \&Smulx
6324 Set a styled underscore.
6325 The single parameter is one of: 0 for no underscore, 1 for normal
6326 underscore, 2 for double underscore, 3 for curly underscore, 4 for dotted
6327 underscore and 5 for dashed underscore.
6328 .It Em \&Setulc , \&ol
6329 Set the underscore colour or reset to the default.
6330 The argument is (red * 65536) + (green * 256) + blue where each is between 0
6331 and 255.
6332 .It Em \&Ss , Se
6333 Set or reset the cursor style.
6334 If set, a sequence such as this may be used
6335 to change the cursor to an underline:
6336 .Bd -literal -offset indent
6337 $ printf '\e033[4 q'
6341 .Em Se
6342 is not set, \&Ss with argument 0 will be used to reset the cursor style instead.
6343 .It Em \&Sync
6344 Start (parameter is 1) or end (parameter is 2) a synchronized update.
6345 .It Em \&Tc
6346 Indicate that the terminal supports the
6347 .Ql direct colour
6348 RGB escape sequence (for example, \ee[38;2;255;255;255m).
6350 If supported, this is used for the initialize colour escape sequence (which
6351 may be enabled by adding the
6352 .Ql initc
6354 .Ql ccc
6355 capabilities to the
6357 .Xr terminfo 5
6358 entry).
6360 This is equivalent to the
6361 .Em RGB
6362 .Xr terminfo 5
6363 capability.
6364 .It Em \&Ms
6365 Store the current buffer in the host terminal's selection (clipboard).
6366 See the
6367 .Em set-clipboard
6368 option above and the
6369 .Xr xterm 1
6370 man page.
6371 .It Em \&XT
6372 This is an existing extension capability that tmux uses to mean that the
6373 terminal supports the
6374 .Xr xterm 1
6375 title set sequences and to automatically set some of the capabilities above.
6377 .Sh CONTROL MODE
6379 offers a textual interface called
6380 .Em control mode .
6381 This allows applications to communicate with
6383 using a simple text-only protocol.
6385 In control mode, a client sends
6387 commands or command sequences terminated by newlines on standard input.
6388 Each command will produce one block of output on standard output.
6389 An output block consists of a
6390 .Em %begin
6391 line followed by the output (which may be empty).
6392 The output block ends with a
6393 .Em %end
6395 .Em %error .
6396 .Em %begin
6397 and matching
6398 .Em %end
6400 .Em %error
6401 have three arguments: an integer time (as seconds from epoch), command number and
6402 flags (currently not used).
6403 For example:
6404 .Bd -literal -offset indent
6405 %begin 1363006971 2 1
6406 0: ksh* (1 panes) [80x24] [layout b25f,80x24,0,0,2] @2 (active)
6407 %end 1363006971 2 1
6411 .Ic refresh-client
6412 .Fl C
6413 command may be used to set the size of a client in control mode.
6415 In control mode,
6417 outputs notifications.
6418 A notification will never occur inside an output block.
6420 The following notifications are defined:
6421 .Bl -tag -width Ds
6422 .It Ic %client-detached Ar client
6423 The client has detached.
6424 .It Ic %client-session-changed Ar client session-id name
6425 The client is now attached to the session with ID
6426 .Ar session-id ,
6427 which is named
6428 .Ar name .
6429 .It Ic %continue Ar pane-id
6430 The pane has been continued after being paused (if the
6431 .Ar pause-after
6432 flag is set, see
6433 .Ic refresh-client
6434 .Fl A ) .
6435 .It Ic %exit Op Ar reason
6438 client is exiting immediately, either because it is not attached to any session
6439 or an error occurred.
6440 If present,
6441 .Ar reason
6442 describes why the client exited.
6443 .It Ic %extended-output Ar pane-id Ar age Ar ... \&  : Ar value
6444 New form of
6445 .Ic %output
6446 sent when the
6447 .Ar pause-after
6448 flag is set.
6449 .Ar age
6450 is the time in milliseconds for which tmux had buffered the output before it was sent.
6451 Any subsequent arguments up until a single
6452 .Ql \&:
6453 are for future use and should be ignored.
6454 .It Ic %layout-change Ar window-id Ar window-layout Ar window-visible-layout Ar window-flags
6455 The layout of a window with ID
6456 .Ar window-id
6457 changed.
6458 The new layout is
6459 .Ar window-layout .
6460 The window's visible layout is
6461 .Ar window-visible-layout
6462 and the window flags are
6463 .Ar window-flags .
6464 .It Ic %output Ar pane-id Ar value
6465 A window pane produced output.
6466 .Ar value
6467 escapes non-printable characters and backslash as octal \\xxx.
6468 .It Ic %pane-mode-changed Ar pane-id
6469 The pane with ID
6470 .Ar pane-id
6471 has changed mode.
6472 .It Ic %pause Ar pane-id
6473 The pane has been paused (if the
6474 .Ar pause-after
6475 flag is set).
6476 .It Ic %session-changed Ar session-id Ar name
6477 The client is now attached to the session with ID
6478 .Ar session-id ,
6479 which is named
6480 .Ar name .
6481 .It Ic %session-renamed Ar name
6482 The current session was renamed to
6483 .Ar name .
6484 .It Ic %session-window-changed Ar session-id Ar window-id
6485 The session with ID
6486 .Ar session-id
6487 changed its active window to the window with ID
6488 .Ar window-id .
6489 .It Ic %sessions-changed
6490 A session was created or destroyed.
6491 .It Xo Ic %subscription-changed
6492 .Ar name
6493 .Ar session-id
6494 .Ar window-id
6495 .Ar window-index
6496 .Ar pane-id ... \&  :
6497 .Ar value
6499 The value of the format associated with subscription
6500 .Ar name
6501 has changed to
6502 .Ar value .
6504 .Ic refresh-client
6505 .Fl B .
6506 Any arguments after
6507 .Ar pane-id
6508 up until a single
6509 .Ql \&:
6510 are for future use and should be ignored.
6511 .It Ic %unlinked-window-add Ar window-id
6512 The window with ID
6513 .Ar window-id
6514 was created but is not linked to the current session.
6515 .It Ic %unlinked-window-close Ar window-id
6516 The window with ID
6517 .Ar window-id ,
6518 which is not linked to the current session, was closed.
6519 .It Ic %unlinked-window-renamed Ar window-id
6520 The window with ID
6521 .Ar window-id ,
6522 which is not linked to the current session, was renamed.
6523 .It Ic %window-add Ar window-id
6524 The window with ID
6525 .Ar window-id
6526 was linked to the current session.
6527 .It Ic %window-close Ar window-id
6528 The window with ID
6529 .Ar window-id
6530 closed.
6531 .It Ic %window-pane-changed Ar window-id Ar pane-id
6532 The active pane in the window with ID
6533 .Ar window-id
6534 changed to the pane with ID
6535 .Ar pane-id .
6536 .It Ic %window-renamed Ar window-id Ar name
6537 The window with ID
6538 .Ar window-id
6539 was renamed to
6540 .Ar name .
6542 .Sh ENVIRONMENT
6543 When
6545 is started, it inspects the following environment variables:
6546 .Bl -tag -width LC_CTYPE
6547 .It Ev EDITOR
6548 If the command specified in this variable contains the string
6549 .Ql vi
6551 .Ev VISUAL
6552 is unset, use vi-style key bindings.
6553 Overridden by the
6554 .Ic mode-keys
6556 .Ic status-keys
6557 options.
6558 .It Ev HOME
6559 The user's login directory.
6560 If unset, the
6561 .Xr passwd 5
6562 database is consulted.
6563 .It Ev LC_CTYPE
6564 The character encoding
6565 .Xr locale 1 .
6566 It is used for two separate purposes.
6567 For output to the terminal, UTF-8 is used if the
6568 .Fl u
6569 option is given or if
6570 .Ev LC_CTYPE
6571 contains
6572 .Qq UTF-8
6574 .Qq UTF8 .
6575 Otherwise, only ASCII characters are written and non-ASCII characters
6576 are replaced with underscores
6577 .Pq Ql _ .
6578 For input,
6580 always runs with a UTF-8 locale.
6581 If en_US.UTF-8 is provided by the operating system it is used and
6582 .Ev LC_CTYPE
6583 is ignored for input.
6584 Otherwise,
6585 .Ev LC_CTYPE
6586 tells
6588 what the UTF-8 locale is called on the current system.
6589 If the locale specified by
6590 .Ev LC_CTYPE
6591 is not available or is not a UTF-8 locale,
6593 exits with an error message.
6594 .It Ev LC_TIME
6595 The date and time format
6596 .Xr locale 1 .
6597 It is used for locale-dependent
6598 .Xr strftime 3
6599 format specifiers.
6600 .It Ev PWD
6601 The current working directory to be set in the global environment.
6602 This may be useful if it contains symbolic links.
6603 If the value of the variable does not match the current working
6604 directory, the variable is ignored and the result of
6605 .Xr getcwd 3
6606 is used instead.
6607 .It Ev SHELL
6608 The absolute path to the default shell for new windows.
6609 See the
6610 .Ic default-shell
6611 option for details.
6612 .It Ev TMUX_TMPDIR
6613 The parent directory of the directory containing the server sockets.
6614 See the
6615 .Fl L
6616 option for details.
6617 .It Ev VISUAL
6618 If the command specified in this variable contains the string
6619 .Ql vi ,
6620 use vi-style key bindings.
6621 Overridden by the
6622 .Ic mode-keys
6624 .Ic status-keys
6625 options.
6627 .Sh FILES
6628 .Bl -tag -width "/etc/tmux.confXXX" -compact
6629 .It Pa ~/.tmux.conf
6630 Default
6632 configuration file.
6633 .It Pa /etc/tmux.conf
6634 System-wide configuration file.
6636 .Sh EXAMPLES
6637 To create a new
6639 session running
6640 .Xr vi 1 :
6642 .Dl $ tmux new-session vi
6644 Most commands have a shorter form, known as an alias.
6645 For new-session, this is
6646 .Ic new :
6648 .Dl $ tmux new vi
6650 Alternatively, the shortest unambiguous form of a command is accepted.
6651 If there are several options, they are listed:
6652 .Bd -literal -offset indent
6653 $ tmux n
6654 ambiguous command: n, could be: new-session, new-window, next-window
6657 Within an active session, a new window may be created by typing
6658 .Ql C-b c
6659 (Ctrl
6660 followed by the
6661 .Ql b
6663 followed by the
6664 .Ql c
6665 key).
6667 Windows may be navigated with:
6668 .Ql C-b 0
6669 (to select window 0),
6670 .Ql C-b 1
6671 (to select window 1), and so on;
6672 .Ql C-b n
6673 to select the next window; and
6674 .Ql C-b p
6675 to select the previous window.
6677 A session may be detached using
6678 .Ql C-b d
6679 (or by an external event such as
6680 .Xr ssh 1
6681 disconnection) and reattached with:
6683 .Dl $ tmux attach-session
6685 Typing
6686 .Ql C-b \&?
6687 lists the current key bindings in the current window; up and down may be used
6688 to navigate the list or
6689 .Ql q
6690 to exit from it.
6692 Commands to be run when the
6694 server is started may be placed in the
6695 .Pa ~/.tmux.conf
6696 configuration file.
6697 Common examples include:
6699 Changing the default prefix key:
6700 .Bd -literal -offset indent
6701 set-option -g prefix C-a
6702 unbind-key C-b
6703 bind-key C-a send-prefix
6706 Turning the status line off, or changing its colour:
6707 .Bd -literal -offset indent
6708 set-option -g status off
6709 set-option -g status-style bg=blue
6712 Setting other options, such as the default command,
6713 or locking after 30 minutes of inactivity:
6714 .Bd -literal -offset indent
6715 set-option -g default-command "exec /bin/ksh"
6716 set-option -g lock-after-time 1800
6719 Creating new key bindings:
6720 .Bd -literal -offset indent
6721 bind-key b set-option status
6722 bind-key / command-prompt "split-window 'exec man %%'"
6723 bind-key S command-prompt "new-window -n %1 'ssh %1'"
6725 .Sh SEE ALSO
6726 .Xr pty 4
6727 .Sh AUTHORS
6728 .An Nicholas Marriott Aq Mt nicholas.marriott@gmail.com