aboutsummaryrefslogtreecommitdiff
path: root/tmux.1
Commit message (Collapse)AuthorAge
...
| * detach-on-destroy is a session option, not server.Nicholas Marriott2010-09-25
| |
| * Add -n and -p flags to switch-client to move to the next and previousNicholas Marriott2010-09-08
| | | | | | | | | | | | | | session (yes, it doesn't match window/pane, but so what, nor does switch-client). Based on a diff long ago from "edsouza".
| * some escapes i missed;Jason McIntyre2010-07-15
| |
| * Custom layouts. list-windows command displays the layout as a string (such asNicholas Marriott2010-06-29
| | | | | | | | | | "bb62,159x48,0,0{79x48,0,0,79x48,80,0}") and it can be applied to another window (with the same number of panes or fewer) using select-layout.
| * Store the current working directory in the session, change the default-pathNicholas Marriott2010-06-27
| | | | | | | | | | option to default to empty and make that mean that the stored session CWD is used.
| * New option, detach-on-destroy, to set what happens to a client when the sessionNicholas Marriott2010-06-27
| | | | | | | | | | it is attached to is destroyed. If on (the default), it is detached; if off, it is switched to the most recently active session.
| * Add a choose-buffer command for easier use of the paste buffer stack.Nicholas Marriott2010-06-21
| |
| * Extend the -t:+ and -t:- window targets for next and previous window toNicholas Marriott2010-06-21
| | | | | | | | accept an offset such as -t:+2. From Tiago Cunha.
| * Add a missing command and some missing Ic, from Tiago Cunha.Nicholas Marriott2010-06-14
| |
| * Couple of missing command aliases/flags, from Tiago Cunha.Nicholas Marriott2010-06-05
| |
| * Support the status_replace # replacement sequences in the pipe-paneNicholas Marriott2010-06-05
| | | | | | | | command, thanks to Andrea Barisani.
| * When the mode-mouse option is on, support dragging to make a selectionNicholas Marriott2010-05-31
| | | | | | | | | | | | | | | | in copy mode. Also support the scroll wheel, although xterm strangely does not ignore it in application mouse mode, causing redraw artifacts when scrolling up (other terminals appear to be better behaved).
| * Better to say "command key bindings" since we've just called themNicholas Marriott2010-05-30
| | | | | | | | command keys.
| * There is no real reason not to list all the key bindings here ratherNicholas Marriott2010-05-30
| | | | | | | | than just a selection.
| * Enhance paste-buffer to allow lines to be separated by any string, fromNicholas Marriott2010-05-19
| | | | | | | | Andrea Barisani.
| * Colour+attribute options for status line alerts, from Alex Alexander.Nicholas Marriott2010-05-14
| |
| * Accept (and document) "none" instead of "default" for attributes as itNicholas Marriott2010-05-14
| | | | | | | | is clearer and avoids confusion with default colours.
| * Identical behaviour to select-prompt can now be obtained withNicholas Marriott2010-05-05
| | | | | | | | | | command-prompt, so remove select-prompt and change ' to be bound to command-prompt -p index "select-window -t :%%".
| * sort options.Igor Sobrado2010-05-02
| |
| * Add a tiled layout, originally from Liam Bedford a while ago, fixed upNicholas Marriott2010-04-25
| | | | | | | | by me.
| * Merge copy mode and output mode, dropping the latter. Idea and code fromNicholas Marriott2010-04-06
| | | | | | | | Micah Cowan.
| * Mention title setting, and the new default.Nicholas Marriott2010-04-05
| |
| * tweak;Jason McIntyre2010-04-04
| |
| * Run job commands explicitly in the global enviroment (which can beNicholas Marriott2010-04-04
| | | | | | | | | | modified with setenv -g) rather than with the environment tmux started with.
| * -a flag to insert a window after an existing one, moving other windowsNicholas Marriott2010-03-27
| | | | | | | | up necessary.
| * dispense with some wacky escape sequences;Jason McIntyre2010-03-26
| |
| * paste-buffer should be per pane, from C. Coutinho.Nicholas Marriott2010-03-22
| |
| * Add vi-style "jump" commands for copy mode, from Micah Cowan.Nicholas Marriott2010-03-22
| |
| * Support up, down, left, right movement through panes with -UDLR flags toNicholas Marriott2010-03-22
| | | | | | | | | | | | | | select-pane. Also REMOVE the up- and down-pane commands: equivalent behaviour is now available using -t :.+ and -t :.-.
| * Permit keys in copy mode to be prefixed by a repeat count, entered withNicholas Marriott2010-03-02
| | | | | | | | | | | | [1-9] in vi mode, or M-[1-9] in emacs mode. From Micah Cowan, tweaked a little by me.
| * Option to set the characters considered word separators in copy mode, fromNicholas Marriott2010-02-22
| | | | | | | | Micah Cowan.
| * Man page additions/improvements, thanks to Robin Lee Powell.Nicholas Marriott2010-02-17
| |
| * Add "N" key to search the opposite way from the last search (reverse of "n"),Nicholas Marriott2010-02-11
| | | | | | | | from Micah Cowan.
| * Clarify default status-right, from Seth Wright.Nicholas Marriott2010-02-10
| |
| * Add an option to disable the smcup/rmcup alternate screen behaviour insideNicholas Marriott2010-02-08
| | | | | | | | tmux. From clemens fischer.
| * next-layout is bound to Space not C-Space.Nicholas Marriott2010-02-07
| |
| * Support attaching a client read-only with a new -r flag to the attach-sessionNicholas Marriott2010-02-06
| | | | | | | | command.
| * Rectangle copy support, from Robin Lee Powell.Nicholas Marriott2010-02-06
| |
| * vi-style B, W and E keys in copy mode to navigate between words treating onlyNicholas Marriott2010-02-04
| | | | | | | | | | | | | | spaces as word separators. Also add . to the list of word separators for standard word navigation. From Micah Cowan, tweaked slightly by me.
| * Option to display the active pane in a different colour with the display-panesNicholas Marriott2010-02-04
| | | | | | | | command. From Paul Hoffman, thanks.
| * Typo, from Micah Cowan.Nicholas Marriott2010-01-28
| |
| * Alter next-word to have vi-like movement behaviour, and add next-word-end withNicholas Marriott2010-01-27
| | | | | | | | the existing emacs behaviour. From Micah Cowan.
| * Top/bottom of history mode keys, diff from Micah Cowan, tweaked by me.Nicholas Marriott2010-01-25
| |
| * Use C-e and C-y for scrolling in vi mode, from Micah Cowan.Nicholas Marriott2010-01-23
| |
| * Permit !, + and - to be used for window targets to specify last window (!), orNicholas Marriott2010-01-19
| | | | | | | | | | | | next and previous window by number (+ and -). Also tidy an if in cmd-new-window.c.
| * Missing Pp, from Tiago Cunha.Nicholas Marriott2010-01-18
| |
| * Document swap-pane -d.Nicholas Marriott2010-01-14
| |
| * New command, join-pane, to split and move an existing pane into the space (likeNicholas Marriott2010-01-07
| | | | | | | | splitw then movep, or the reverse of breakp).
| * Change split-window to accept a pane target (it should be split-pane butNicholas Marriott2010-01-07
| | | | | | | | renaming the command would be annoying).
| * Options to set the colour of the pane borders, with different colours for theNicholas Marriott2010-01-03
| | | | | | | | active pane.