aboutsummaryrefslogtreecommitdiff
path: root/tmux.1
Commit message (Collapse)AuthorAge
...
| * zap trailing whitespace;Jason McIntyre2009-06-04
| |
| * Do not set the window title by default (make set-titles option default to off),Nicholas Marriott2009-06-03
| | | | | | | | wiping over the title is rude and annoying. Agreed by several.
| * New session option, status-utf8, to control the interpretation of top-bit-setNicholas Marriott2009-06-03
| | | | | | | | | | characters in status-left and status-right (if on, they are treated as UTF-8; otherwise passed through).
| * Add missing documentation for the -a flag used to move to next/previous windowNicholas Marriott2009-06-03
| | | | | | | | with alert.
| * Add a section summarising the status line. There are quite a number of statusNicholas Marriott2009-06-03
| | | | | | | | | | line options, it is something many want to configure, and the meaning of some bits weren't really documented.
| * undo a mistake found by sobrado;Jason McIntyre2009-06-03
| |
| * some cleanup; ok nicmJason McIntyre2009-06-03
| |
| * Recent code to try and detect if a terminal supports UTF-8 by printing to itNicholas Marriott2009-06-02
| | | | | | | | | | fails spectacularly on (at least) sparc64, so disable it for now. Thanks to naddy and Josh Elsasser for help and testing.
| * sort options alphabetically.Igor Sobrado2009-06-02
| |
| * spawn login shells by default, adapt manpage bits as well.Pierre-Yves Ritschard2009-06-02
| | | | | | | | ok nicm@
| * Update the man page with some recent changes to the code:Nicholas Marriott2009-06-01
| | | | | | | | | | | | | | | | | | | | - SIGUSR1 recreates the socket; - guesswork to work out if the terminal supports UTF-8; - a paste key for the command prompt; - main-horizontal layout to match main-vertical, and options to configure the size of the large pane; - clear-history command; - select-layout command.
| * Import tmux, a terminal multiplexor allowing (among other things) a singleNicholas Marriott2009-06-01
| | | | | | | terminal to be switched between several different windows and programs displayed on one terminal be detached from one terminal and moved to another. ok deraadt pirofti
* add cmd-choose-list to allow arbitrary options to be selected. FromNicholas Marriott2012-09-04
| | | | Thomas Adam.
* Sync OpenBSD patchset 1158:Tiago Cunha2012-08-12
| | | | | Another missing format from sam at sltosis.org.
* Sync OpenBSD patchset 1155:Tiago Cunha2012-08-12
| | | | | Add some missing formats from Samuel Le Thiec.
* Sync OpenBSD patchset 1154:Tiago Cunha2012-08-12
| | | | | Document pane_index variable, from sam at sltosis dot org.
* Sync OpenBSD patchset 1147:Tiago Cunha2012-07-11
| | | | | remove extraneous line;
* Sync OpenBSD patchset 1146:Tiago Cunha2012-07-11
| | | | | | | Add choose-tree command to show windows and sessions in the same list. Change choose-window and -session to use the same code. From Thomas Adam.
* Sync OpenBSD patchset 1134:Tiago Cunha2012-06-18
| | | | | Add -a for kill-session, from Thomas Adam.
* Sync OpenBSD patchset 1133:Tiago Cunha2012-06-18
| | | | | Add -a flag for detach-client, from Thomas Adam.
* Sync OpenBSD patchset 1132:Tiago Cunha2012-06-18
| | | | | Simplify references to alerts in the man page, from Thomas Adam.
* Sync OpenBSD patchset 1119:Tiago Cunha2012-05-22
| | | | | | Switch all of the various choose- and list- commands over to the format infrastructure, from Thomas Adam.
* Sync OpenBSD patchset 1113:Tiago Cunha2012-05-22
| | | | | Ignore line continuation when escaped as \\, from Simon Nicolussi.
* Sync OpenBSD patchset 1105:Tiago Cunha2012-05-03
| | | | | default-path has the same possibilities as new-window -c now.
* Sync OpenBSD patchset 1104:Tiago Cunha2012-05-03
| | | | | | | Add a flag to move-window to renumber the windows in a session (closing any gaps) and add an option to do this automatically each time a window is killed. From Thomas Adam.
* Sync OpenBSD patchset 1097:Tiago Cunha2012-04-24
| | | | | Add window-status-separator option, from Thomas Adam.
* Sync OpenBSD patchset 1096:Tiago Cunha2012-04-24
| | | | | Add -a flag to kill-window, from Thomas Adam.
* Sync OpenBSD patchset 1084:Tiago Cunha2012-04-10
| | | | | | Add a layout history which can be stepped through with select-layout -u and -U commands (bound to 'u' and 'U' by default).
* Sync OpenBSD patchset 1083:Tiago Cunha2012-04-10
| | | | | Add pane_current_path format, suggested by Mikolaj Kucharski.
* Sync OpenBSD patchset 1079:Tiago Cunha2012-03-29
| | | | | | Accept an argument to show-environment to show one variable, based on a diff from Kazuhiko Sakaguchi.
* Sync OpenBSD patchset 1075:Tiago Cunha2012-03-29
| | | | | | Add -C -N -T flags to find-window to find in content, name, title. From Jonathan Daugherty.
* Sync OpenBSD patchset 1073:Tiago Cunha2012-03-29
| | | | | 50 is a too low trigger default on larger terminals, bump to 250.
* Sync OpenBSD patchset 1072:Tiago Cunha2012-03-29
| | | | | | | | | | | | | | | | | | | | Add a simple form of output rate limiting by counting the number of certain C0 sequences (linefeeds, backspaces, carriage returns) and if it exceeds a threshold (current default 50/millisecond), start to redraw the pane every 100 milliseconds instead of making each change as it comes. Two configuration options - c0-change-trigger and c0-change-interval. This makes tmux much more responsive under very fast output (for example yes(1) or accidentally cat'ing a large file) but may not be perfect on all terminals and connections - feedback very welcome, particularly where this change has a negative rather than positive effect (making it off by default is a possibility). After much experimentation based originally on a request Robin Lee Powell (which ended with a completely different solution), this idea from discussion with Ailin Nemui.
* Sync OpenBSD patchset 1066:Tiago Cunha2012-03-18
| | | | | | Add a wrap-search option to turn off wrapping of searches in copy mode. From Jacobo de Vera.
* Sync OpenBSD patchset 1063:Tiago Cunha2012-03-18
| | | | | Add -q option to set-option to turn off info message, from marcel partap.
* Sync OpenBSD patchset 1049:Tiago Cunha2012-03-18
| | | | | Add -P/-F flags to break-pane too, from George Nachman.
* Sync OpenBSD patchset 1041:Tiago Cunha2012-03-07
| | | | | | Add -F format to new-window and split-window to use with the -P flag, from George Nachman.
* Sync OpenBSD patchset 1037:Tiago Cunha2012-03-07
| | | | | | | | | Support "bracketed paste" mode. This adds a -p flag to paste-buffer - if this is used and the application has requested bracketed pastes, then tmux surrounds the pasted text by \033[200~ and \033[201~. Applications like vim can (apparently) use this to avoid, for example, indenting the text. From Ailin Nemui.
* Sync OpenBSD patchset 1035:Tiago Cunha2012-03-03
| | | | | | | Add move-pane command (like join-pane but allows the same window). Also -b flag to join-pane and move-pane to place the pane to the left or above. From George Nachman.
* Sync OpenBSD patchset 1032:Tiago Cunha2012-03-03
| | | | | | Allow a single option to be specified to show-options to show just that option.
* Sync OpenBSD patchset 1031:Tiago Cunha2012-03-03
| | | | | Use format for display-message, based on a diff from George Nachman.
* Sync OpenBSD patchset 1026:Tiago Cunha2012-02-15
| | | | | | Document option values, particularly that omitting on|off for a flag is a toggle.
* Sync OpenBSD patchset 1025:Tiago Cunha2012-02-02
| | | | | | Add -l flag to send-keys to send input literally (without translating key names). From Frank Terbeck.
* Sync OpenBSD patchset 1021:Tiago Cunha2012-02-02
| | | | | | | | | | | Provide defined ways to set the various default-path possibilities: ~ for home directory, . for server start directory, - for session start directory and empty for the pane's working directory (the default). All can also be used as part of a relative path (eg -/foo). Also provide -c flags to neww and splitw to override default-path setting. Based on a diff from sthen. ok sthen
* Sync OpenBSD patchset 1019:Tiago Cunha2012-01-31
| | | | | id -> ID; ok nicm
* Sync OpenBSD patchset 1017:Tiago Cunha2012-01-31
| | | | | | Give each window a unique id, like panes but prefixed with @. Based on work from George Nachman.
* Sync OpenBSD patchset 1015:Tiago Cunha2012-01-29
| | | | | | Add an option to move the status line to the top of the screen, requested by many.
* Sync OpenBSD patchset 1009:Tiago Cunha2012-01-21
| | | | | it's -> its.
* Sync OpenBSD patchset 1007:Tiago Cunha2012-01-21
| | | | | | | | | | | | Drop the ability to have a list of keys in the prefix in favour of two separate options, prefix and prefix2. This simplifies the code and gets rid the data options type which was only used for this one option. Also add a -2 flag to send-prefix to send the secondary prefix key, fixing a cause of minor irritation. People who want three prefix keys are out of luck :-).
* Sync OpenBSD patchset 1006:Tiago Cunha2012-01-21
| | | | | | Add strings to allow the aixterm bright colours to be used when configuring colours, requested by Elliott Cable a few months ago.