aboutsummaryrefslogtreecommitdiff
path: root/tmux.1
Commit message (Collapse)AuthorAge
...
| * Add a respawn-pane command, from Marcel Partap.Nicholas Marriott2011-06-05
| |
| * Fix a typo, spotted by Michal Mazurek..Nicholas Marriott2011-05-30
| |
| * tweak the TERMINFO section; ok nicmJason McIntyre2011-05-21
| |
| * Pass prompts through status_replace so that they can be more helpfulNicholas Marriott2011-05-20
| | | | | | | | | | (such as showing the previous session name when renaming). From Tiago Cunha.
| * Support DECSCUSR sequence to set the cursor style with two newNicholas Marriott2011-05-20
| | | | | | | | terminfo(5) extensions, Cs and Csr. Written by Ailin Nemui.
| * Support xterm(1) cursor colour change sequences through terminfo(5) CcNicholas Marriott2011-05-20
| | | | | | | | | | (set) and Cr (reset) extensions. Originally by Sean Estabrooks, tweaked by me and Ailin Nemui.
| * Support setting the xterm clipboard when copying from copy mode usingNicholas Marriott2011-05-18
| | | | | | | | | | | | | | | | the xterm escape sequence for the purpose (if xterm is configured to allow it). Written by and much discussed Ailin Nemui, guidance on xterm/termcap/terminfo from Thomas Dickey.
| * Add three new copy-mode commands - select-line, copy-line,Nicholas Marriott2011-05-18
| | | | | | | | copy-end-of-line. From Dave Disser and Randy Stauner a while back.
| * Add a new option, mouse-resize-pane. When on, panes may be resized byNicholas Marriott2011-05-08
| | | | | | | | dragging their borders. From hsim at gmx.li.
| * Use the tsl and fsl terminfo(5) capabilities to update terminal titleNicholas Marriott2011-05-08
| | | | | | | | | | | | and automatically fill them in on terminals with the XT capability (which means their title setting is xterm-compatible). From hsim at gmx.li.
| * Provide #h for short hostname (no domain) from Michal Mazurek.Nicholas Marriott2011-04-24
| |
| * When mode-mouse is on (it is off by default), automatically enter copyNicholas Marriott2011-04-19
| | | | | | | | | | | | mode when the mouse is dragged or the mouse wheel is used. Also exit copy mode when the mouse wheel is scrolled off the bottom. Discussed with and written by hsim at gmx dot li.
| * Add an option (mouse-select-window) which allows the mouse to be used byNicholas Marriott2011-04-18
| | | | | | | | clicking on the status line, written by hsim at gmx dot li.
| * new sentence, new line;Jason McIntyre2011-04-17
| |
| * Add -t to list-clients, based on a diff from Zac Sprackett.Nicholas Marriott2011-04-17
| |
| * -s comes before -t and also add -s to command syntax. Prompted by jmc.Nicholas Marriott2011-04-11
| |
| * Add -s option to detach all clients attached to a session, from ZacNicholas Marriott2011-04-11
| | | | | | | | Sprackett.
| * Add a flag to cmd_find_session so that attach-session can preferNicholas Marriott2011-04-05
| | | | | | | | | | unattached sessions when choosing the most recently used (if -t is not given). Suggested by claudio@.
| * "or" should be on a line on its own here so it is not emphasised asNicholas Marriott2011-04-01
| | | | | | | | well.
| * Change -t on display-message to be target-pane for the #[A-Z]Nicholas Marriott2011-03-29
| | | | | | | | replacements and add -c as target-client.
| * Add -a and -s options to lsp to list all panes in the server or sessionNicholas Marriott2011-03-28
| | | | | | | | respectively. Likewise add -s to lsw. From Ben Boeckel.
| * Allow a start and end line to be specified for capture-pane which may beNicholas Marriott2011-03-28
| | | | | | | | | | negative to capture part of the history. Prompted by request from Victor J Orlikowski.
| * Give each pane created in a tmux server a unique id (starting from 0),Nicholas Marriott2011-03-27
| | | | | | | | | | put it in the TMUX_PANE environment variable and accept it as a target. Suggested by and with testing and tweaks from Ben Boeckel.
| * Add a -P option to detach to HUP the client's parent process (usuallyNicholas Marriott2011-03-03
| | | | | | | | causing it to exit as well).
| * Support -x and -y for new-session to specify the initial size of theNicholas Marriott2011-01-14
| | | | | | | | window if created detached with -d.
| * Clarify alternate-screen description a little.Nicholas Marriott2011-01-13
| |
| * Use TMPDIR if set, from Han Boetes.Nicholas Marriott2011-01-12
| |
| * Remove a bit of text that makes exit-unattached description unclear.Nicholas Marriott2011-01-09
| |
| * Add missing arguments to some options.Nicholas Marriott2011-01-09
| |
| * Accept colours of the hex form #ffffff and translate to the nearest fromNicholas Marriott2011-01-08
| | | | | | | | the xterm(1) 256-colour set.
| * Now that parsing is common, merge some of the small, related commandsNicholas Marriott2011-01-04
| | | | | | | | | | | | | | together to use the same code. Also add some arguments (such as -n and -p) to some commands to match existing commands.
| * Support for UTF-8 mouse input (\033[1005h). This was added in xterm 262Nicholas Marriott2011-01-03
| | | | | | | | | | | | | | | | | | | | and supports larger terminals than the older way. If the new mouse-utf8 option is on, UTF-8 mouse input is enabled for all UTF-8 terminals. The option defaults to on if LANG etc are set in the same manner as the utf8 option. With help and based on code from hsim at gmx.li.
| * suspend-client has used -t for the client target (like everything else)Nicholas Marriott2011-01-01
| | | | | | | | for ages, fix the usage string and man page and trim some leftover code.
| * Add a -P option to new-window and split-window to print the new windowNicholas Marriott2011-01-01
| | | | | | | | or pane index in target form (useful to pass it into other commands).
| * fix trailing whitespace;Jason McIntyre2010-12-31
| |
| * Fix BUFFERS section now they are global.Nicholas Marriott2010-12-30
| |
| * Change from a per-session stack of buffers to one global stack which isNicholas Marriott2010-12-30
| | | | | | | | | | | | | | much more convenient and also simplifies lot of code. This renders copy-buffer useless and makes buffer-limit now a server option. By Tiago Cunha.
| * tweak previous;Jason McIntyre2010-12-27
| |
| * Add a missing .Pp and sort options alphabetically, from Tiago Cunha.Nicholas Marriott2010-12-27
| |
| * Add other-pane-height and other-pane-width options, allowing the widthNicholas Marriott2010-12-19
| | | | | | | | | | or height of the smaller panes in the main-horizontal and main-vertical layouts to be set. Mostly from David Goodlad.
| * Track the last session for a client and add a flag to switch-client andNicholas Marriott2010-12-11
| | | | | | | | a key binding (L) to move a client back to its last session.
| * Rephrase a confusing sentence.Nicholas Marriott2010-12-10
| |
| * Add an option to alert (monitor) for silence (lack of activity) in aNicholas Marriott2010-12-06
| | | | | | | | window. From Thomas Adam.
| * If VISUAL or EDITOR contains "vi", configure mode-keys and status-keysNicholas Marriott2010-11-29
| | | | | | | | | | | | | | to vi. Based on a diff from martynas@, previously requested by a couple of other people.
| * Update man page for update-environment.Nicholas Marriott2010-11-14
| |
| * Flag to flush all key bindings from Rob Paisley.Nicholas Marriott2010-11-11
| |
| * Typo, from Rob Paisley.Nicholas Marriott2010-11-01
| |
| * Add a last-pane command (bound to ; by default). Requested ages ago byNicholas Marriott2010-10-23
| | | | | | | | somebody whose name I have forgotten.
| * Put "or" on new line from command with .Ic.Nicholas Marriott2010-10-14
| |
| * Two new options:Nicholas Marriott2010-09-26
| | | | | | | | | | | | | | | | | | | | | | | | - server option "exit-unattached" makes the server exit when no clients are attached, even if sessions are present; - session option "destroy-unattached" destroys a session once no clients are attached to it. These are useful for preventing tmux remaining in the background where it is undesirable and when using tmux as a login shell to keep a limit on new sessions.