Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-08-11 | Another missing format from sam at sltosis.org. | Nicholas Marriott | |
2012-08-11 | Add some missing formats from Samuel Le Thiec. | Nicholas Marriott | |
2012-07-15 | Document pane_index variable, from sam at sltosis dot org. | Nicholas Marriott | |
2012-07-08 | remove extraneous line; | Jason McIntyre | |
2012-07-08 | Add choose-tree command to show windows and sessions in the same | Nicholas Marriott | |
list. Change choose-window and -session to use the same code. From Thomas Adam. | |||
2012-06-18 | Add -a for kill-session, from Thomas Adam. | Nicholas Marriott | |
2012-06-18 | Add -a flag for detach-client, from Thomas Adam. | Nicholas Marriott | |
2012-06-18 | Simplify references to alerts in the man page, from Thomas Adam. | Nicholas Marriott | |
2012-05-22 | Switch all of the various choose- and list- commands over to the format | Nicholas Marriott | |
infrastructure, from Thomas Adam. | |||
2012-05-17 | Ignore line continuation when escaped as \\, from Simon Nicolussi. | Nicholas Marriott | |
2012-05-02 | default-path has the same possibilities as new-window -c now. | Nicholas Marriott | |
2012-04-29 | Add a flag to move-window to renumber the windows in a session (closing | Nicholas Marriott | |
any gaps) and add an option to do this automatically each time a window is killed. From Thomas Adam. | |||
2012-04-23 | Add window-status-separator option, from Thomas Adam. | Nicholas Marriott | |
2012-04-23 | Add -a flag to kill-window, from Thomas Adam. | Nicholas Marriott | |
2012-04-01 | Add a layout history which can be stepped through with select-layout -u | Nicholas Marriott | |
and -U commands (bound to 'u' and 'U' by default). | |||
2012-04-01 | Add pane_current_path format, suggested by Mikolaj Kucharski. | Nicholas Marriott | |
2012-03-22 | Accept an argument to show-environment to show one variable, based on a | Nicholas Marriott | |
diff from Kazuhiko Sakaguchi. | |||
2012-03-20 | Add -C -N -T flags to find-window to find in content, name, title. From | Nicholas Marriott | |
Jonathan Daugherty. | |||
2012-03-20 | 50 is a too low trigger default on larger terminals, bump to 250. | Nicholas Marriott | |
2012-03-20 | Add a simple form of output rate limiting by counting the number of | Nicholas Marriott | |
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. | |||
2012-03-17 | Add a wrap-search option to turn off wrapping of searches in copy | Nicholas Marriott | |
mode. From Jacobo de Vera. | |||
2012-03-17 | Add -q option to set-option to turn off info message, from marcel partap. | Nicholas Marriott | |
2012-03-12 | Add -P/-F flags to break-pane too, from George Nachman. | Nicholas Marriott | |
2012-03-04 | Add -F format to new-window and split-window to use with the -P flag, | Nicholas Marriott | |
from George Nachman. | |||
2012-03-03 | Support "bracketed paste" mode. This adds a -p flag to paste-buffer - if | Nicholas Marriott | |
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. | |||
2012-03-03 | Add move-pane command (like join-pane but allows the same window). Also | Nicholas Marriott | |
-b flag to join-pane and move-pane to place the pane to the left or above. From George Nachman. | |||
2012-02-25 | Allow a single option to be specified to show-options to show just that | Nicholas Marriott | |
option. | |||
2012-02-23 | Use format for display-message, based on a diff from George Nachman. | Nicholas Marriott | |
2012-02-02 | Document option values, particularly that omitting on|off for a flag is | Nicholas Marriott | |
a toggle. | |||
2012-02-02 | Add -l flag to send-keys to send input literally (without translating | Nicholas Marriott | |
key names). From Frank Terbeck. | |||
2012-01-31 | Provide defined ways to set the various default-path possibilities: ~ | Nicholas Marriott | |
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 | |||
2012-01-30 | id -> ID; ok nicm | Jason McIntyre | |
2012-01-30 | Give each window a unique id, like panes but prefixed with @. Based on | Nicholas Marriott | |
work from George Nachman. | |||
2012-01-29 | Add an option to move the status line to the top of the screen, | Nicholas Marriott | |
requested by many. | |||
2012-01-21 | it's -> its. | Nicholas Marriott | |
2012-01-21 | Drop the ability to have a list of keys in the prefix in favour of two | Nicholas Marriott | |
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 :-). | |||
2012-01-21 | Add strings to allow the aixterm bright colours to be used when | Nicholas Marriott | |
configuring colours, requested by Elliott Cable a few months ago. | |||
2012-01-21 | Add a -R flag to send-keys to reset the terminal. Written ages ago and | Nicholas Marriott | |
Suggested by someone, I forget who. | |||
2012-01-20 | Add some trivial additional status line attributes from jwcxz at users | Nicholas Marriott | |
dot sourceforge dot net. | |||
2012-01-20 | Remove trailing spaces. | Nicholas Marriott | |
2012-01-20 | Add an option to disable the window rename escape sequence, from Romain | Nicholas Marriott | |
Francoise. | |||
2011-12-31 | Add a man page section on window names and pane titles, from Felix | Nicholas Marriott | |
Rosencrantz. | |||
2011-12-30 | Show how to set default-path to revert to tmux's old behaviour of opening | Stuart Henderson | |
new windows in the current working directory at the time tmux was started, it's not obvious. naddy@ agrees this is a useful inclusion. | |||
2011-12-27 | Allow $HOME as default-path in tmux.conf so the same config file can be used | Stefan Sperling | |
on different machines regardless of where the user's home directory is. ok nicm | |||
2011-12-24 | formatting errors, found using freebsd's "igor"; | Jason McIntyre | |
2011-12-09 | Change the way the working directory for new processes is discovered. If | Nicholas Marriott | |
default-path isn't empty, it is used. Otherwise: 1) If tmux neww is run from the command line, the working directory of the client is used. 2) Otherwise sysctl KERN_PROC_CWD is used to retrieve the current working directory of the process in the active pane. 3) If that fails, the directory where the session was created is used. Support code by Romain Francois, OpenBSD specific bits by me. Note this requires a recent userland and kernel with KERN_PROC_CWD. | |||
2011-12-04 | Support "jump to" like vi in copy mode using t and T keys. Also add x | Nicholas Marriott | |
and X for delete in edit mode. From Ben Boeckel, thanks. | |||
2011-11-15 | Move word-separators to be a session rather than window option, from Ben | Nicholas Marriott | |
Boeckel. | |||
2011-11-05 | Missing bits for new keys and buffer indexes, from Tiago Cunha | Nicholas Marriott | |
2011-11-05 | Option to change status line (message) background when using vi keys and | Nicholas Marriott | |
in command mode. From Ben Boeckel. |