Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-04-06 | Merge copy mode and output mode, dropping the latter. Idea and code from | Nicholas Marriott | |
Micah Cowan. | |||
2010-04-04 | Run job commands explicitly in the global enviroment (which can be | Nicholas Marriott | |
modified with setenv -g) rather than with the environment tmux started with. | |||
2010-04-04 | Squash a function that is only called in a callback into the callback | Nicholas Marriott | |
function. | |||
2010-03-22 | Dead functions, lint. | Nicholas Marriott | |
2010-03-22 | Add vi-style "jump" commands for copy mode, from Micah Cowan. | Nicholas Marriott | |
2010-03-22 | Support up, down, left, right movement through panes with -UDLR flags to | Nicholas Marriott | |
select-pane. Also REMOVE the up- and down-pane commands: equivalent behaviour is now available using -t :.+ and -t :.-. | |||
2010-03-22 | New input parser based on http://vt100.net/emu/dec_ansi_parser. | Nicholas Marriott | |
2010-03-02 | Permit keys in copy mode to be prefixed by a repeat count, entered with | Nicholas Marriott | |
[1-9] in vi mode, or M-[1-9] in emacs mode. From Micah Cowan, tweaked a little by me. | |||
2010-02-19 | copy mode uses the real screen as backing and if it is updated while copying, | Nicholas Marriott | |
strange things can happen. So, freeze reading from the pty while in copy mode. | |||
2010-02-11 | Add "N" key to search the opposite way from the last search (reverse of "n"), | Nicholas Marriott | |
from Micah Cowan. | |||
2010-02-06 | Use the array.h code for the causes list. | Nicholas Marriott | |
2010-02-06 | Support attaching a client read-only with a new -r flag to the attach-session | Nicholas Marriott | |
command. | |||
2010-02-06 | Rectangle copy support, from Robin Lee Powell. | Nicholas Marriott | |
2010-02-06 | Instead of bailing out on the first configuration file error, carry on, | Nicholas Marriott | |
collecting all the errors, then start with the active window in more mode displaying them. | |||
2010-02-04 | vi-style B, W and E keys in copy mode to navigate between words treating only | Nicholas Marriott | |
spaces as word separators. Also add . to the list of word separators for standard word navigation. From Micah Cowan, tweaked slightly by me. | |||
2010-02-01 | Add scroll-up/scroll-down for choose/more mode, from Micah Cowan. | Nicholas Marriott | |
2010-01-27 | Alter next-word to have vi-like movement behaviour, and add next-word-end with | Nicholas Marriott | |
the existing emacs behaviour. From Micah Cowan. | |||
2010-01-25 | Top/bottom of history mode keys, diff from Micah Cowan, tweaked by me. | Nicholas Marriott | |
2010-01-07 | New command, join-pane, to split and move an existing pane into the space (like | Nicholas Marriott | |
splitw then movep, or the reverse of breakp). | |||
2010-01-03 | Options to set the colour of the pane borders, with different colours for the | Nicholas Marriott | |
active pane. | |||
2009-12-17 | Allow keys to be replaced and reorder the table so that terminfo-defined keys | Nicholas Marriott | |
(or terminal-overrides) take precedence over internally defined. | |||
2009-12-14 | New server option, escape-time, to set the timeout used to detect if escapes | Nicholas Marriott | |
are alone or part of a function key or meta sequence. | |||
2009-12-10 | Add "server options" which are server-wide and not bound to a session or | Nicholas Marriott | |
window. Set and displayed with "set -s" and "show -s". Currently the only option is "quiet" (like command-line -q, allowing it to be set from .tmux.conf), but others will come along. | |||
2009-12-08 | Permit panes to be referred to as "top", "bottom", "top-left" etc, if the right | Nicholas Marriott | |
pane can be identified. | |||
2009-12-03 | Massive spaces->tabs and trailing whitespace cleanup, hopefully for the last | Nicholas Marriott | |
time now I've configured emacs to make them displayed in really annoying colours... | |||
2009-12-03 | Eliminate duplicate code and ease the passage for server-wide options by adding | Nicholas Marriott | |
a -w flag to set-option and show-options and making setw and showw aliases to set -w and show -w. Note: setw and showw are still there, but now aliases for set -w and show -w. | |||
2009-12-01 | New command, capture-pane, which copies the entire pane contents to a paste | Nicholas Marriott | |
buffer. From Jonathan Alvarado. | |||
2009-11-30 | Handle partial xterm function key sequences. | Nicholas Marriott | |
2009-11-26 | This doesn't need to be u_int. | Nicholas Marriott | |
2009-11-26 | Tidy up various bits of the paste code, make the data buffer char * and add | Nicholas Marriott | |
comments. | |||
2009-11-26 | Remove a couple of unused arguments where possible, and add /* ARGSUSED */ to | Nicholas Marriott | |
the rest to reduce lint output. | |||
2009-11-25 | Output the right keys for application and number keypad modes (they were the | Nicholas Marriott | |
wrong way round). | |||
2009-11-19 | Change status line drawing to create the window list in a separate screen and | Nicholas Marriott | |
then copy it into the status line screen. This allows UTF-8 in window names and fixes some problems with #[] in window-status-format. | |||
2009-11-19 | Two new options, window-status-format and window-status-current-format, which | Nicholas Marriott | |
allow the format of each window in the status line window list to be controlled using similar # sequences as status-left/right. This diff also moves part of the way towards UTF-8 support in window names but it isn't quite there yet. | |||
2009-11-19 | Don't interpret #() for display-message, it usually doesn't make sense and may | Nicholas Marriott | |
leak commands. | |||
2009-11-18 | Cleanup by moving various (mostly horrible) little bits handling UTF-8 grid | Nicholas Marriott | |
data into functions in a new file, grid-utf8.c, and use sizeof intead of UTF8_DATA. Also nuke trailing whitespace from tmux.1, reminded by jmc. | |||
2009-11-18 | Add a per-client log of status line messages displayed while that client | Nicholas Marriott | |
exists. A new message-limit session option sets the maximum number of entries and a command, show-messages, shows the log (bound to ~ by default). This (and prompt history) might be better as a single global log but until there are global options it is easier for them to be per client. | |||
2009-11-13 | Tweak a comment and add some spacing. | Nicholas Marriott | |
2009-11-13 | Get rid of the ugly CMD_CHFLAG macro and use a const string (eg "dDU") in the | Nicholas Marriott | |
command entry structs and a couple of functions to check/set the flags. | |||
2009-11-13 | Destroy panes immediately rather than checking them all every loop. | Nicholas Marriott | |
2009-11-13 | Zap unused functions, prompted by deraadt. | Nicholas Marriott | |
2009-11-11 | Only need to chmod +x or -x the socket when a client is created, lost or | Nicholas Marriott | |
attached, rather than every event loop. | |||
2009-11-10 | Whoops, this is needed for last commit as well. | Nicholas Marriott | |
2009-11-05 | Switch the tty key tree over to an (unbalanced) ternary tree which allows | Nicholas Marriott | |
partial matches to be done (they wait for further data or a timer to expire, like a naked escape). Mouse and xterm-style keys still expect to be atomic. | |||
2009-11-05 | Key flags are only used for initialisation so they are not needed in the main | Nicholas Marriott | |
tty_key struct. | |||
2009-11-05 | Now all timers are events, there is no longer any need to wake up every 50 ms - | Nicholas Marriott | |
only wake up when an event happens. | |||
2009-11-05 | Switch tty key input over to happen on a read event. This is a bit more | Nicholas Marriott | |
complicated because of escape input, but in that case instead of processing a key immediately, schedule a timer and reprocess the bufer when it expires. This currently assumes that keys will be atomic (ie that if eg F1 is pressed the entire sequence is present in the buffer). This is usually but not always true, a change in the tree format so it can differentiate potential (partial) key sequences will happens soon and will allow this to be fixed. | |||
2009-11-05 | Convert the key repeat timer to an event. | Nicholas Marriott | |
2009-11-04 | Change window name change to use a timer event rather than a gettimeofday() | Nicholas Marriott | |
check every loop. | |||
2009-11-04 | Move status timer check into the global once-per-second timer, this could maybe | Nicholas Marriott | |
be done better but one every second is better than once every 50 ms. |