Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Make pane/window wrapping more logical (so with 10 windows, +10 from | 2010-07-14 | 1 | -3/+9 | ||
| | | | | window 5 stays in the same place), and tidy the code. From Tiago Cunha. | |||||
* | Return the command client return code with MSG_EXIT now that MSG_ERROR and | 2010-07-11 | 1 | -1/+6 | ||
| | | | | | | | MSG_PRINT are unused. New clients should be compatible with old tmux servers but vice versa may print an error. | |||||
* | replace some magic mouse constants with defines for clarity. ok nicm | 2010-06-29 | 1 | -1/+15 | ||
| | ||||||
* | Custom layouts. list-windows command displays the layout as a string (such as | 2010-06-29 | 1 | -1/+8 | ||
| | | | | | "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. | |||||
* | Send all three of stdin, stdout, stderr from the client to the server, so that | 2010-06-28 | 1 | -8/+9 | ||
| | | | | | | | | commands can directly make use of them. This means that load-buffer and save-buffer can have "-" as the file to read from stdin or write to stdout. This is a protocol version bump so the tmux server will need to be restarted after upgrade (or an older client used). | |||||
* | Store the current working directory in the session, change the default-path | 2010-06-27 | 1 | -1/+2 | ||
| | | | | | option to default to empty and make that mean that the stored session CWD is used. | |||||
* | Setting the cmdlist pointer in the bind-key to NULL to prevent it being freed | 2010-06-26 | 1 | -2/+5 | ||
| | | | | | | | | | | | after the command is executing is bogus because it may still be needed if the same command is going to be executed again (for example if you "bind-key a bind-key b ..."). Making a copy is hard, so instead add a reference count to the cmd_list. While here, also print bind-key -n and the rest of the flags properly. Fixes problem reported by mcbride@. | |||||
* | Add a choose-buffer command for easier use of the paste buffer stack. | 2010-06-21 | 1 | -1/+3 | ||
| | ||||||
* | Extend the -t:+ and -t:- window targets for next and previous window to | 2010-06-21 | 1 | -1/+3 | ||
| | | | | accept an offset such as -t:+2. From Tiago Cunha. | |||||
* | Having a list of winlinks->alerts for each session is stupid, just store | 2010-06-21 | 1 | -17/+9 | ||
| | | | | the alert flags directly in the winlink itself. | |||||
* | Use a macro-based mask for obtaining a key or modifier-set from the | 2010-06-06 | 1 | -1/+5 | ||
| | | | | combination. Display C-@, etc, as C-Space, in list-keys. By Micah Cowan. | |||||
* | Fix problems with window sizing seen by Raghavendra D Prabhu when | 2010-06-05 | 1 | -2/+2 | ||
| | | | | | | | | | | | | | | | | | | starting tmux from .xinitrc. One of the very few things the server relies on the client for now is to pass through a message on SIGWINCH, but there is a condition where potentially a SIGWINCH may be lost during the transition from unattached (main.c) to attached (client.c). So trigger a size change immediately after the client installs its SIGWINCH handler. Also, when the terminal is resized, reset the scroll region and cursor position. Previously, we were clearing our saved idea of these, but in fact some terminals do not reset them on resize, so this caused problems during redraw. While here make a resize to the same size not cause a redraw and rename the tmux.out output log file to include the tmux PID. | |||||
* | When the mode-mouse option is on, support dragging to make a selection | 2010-05-31 | 1 | -3/+4 | ||
| | | | | | | | | 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). | |||||
* | Move imsg into libutil and add a man page. | 2010-05-26 | 1 | -2/+2 | ||
| | | | | | | | | Minor bump for libutil. Previous versions of this diff and man page looked at by various people. "you should just commit" deraadt | |||||
* | Pass in the session, rather than the client, to window modes' key() | 2010-05-23 | 1 | -6/+6 | ||
| | | | | | | | | | function. We were only ever using the client to find the session anyway. This allows send-key to work properly for manipulating copy mode from outside tmux. From Micah Cowan. | |||||
* | Identical behaviour to select-prompt can now be obtained with | 2010-05-05 | 1 | -2/+1 | ||
| | | | | | command-prompt, so remove select-prompt and change ' to be bound to command-prompt -p index "select-window -t :%%". | |||||
* | Put this back in with the initialisation in the right order. | 2010-05-04 | 1 | -3/+6 | ||
| | ||||||
* | Revert last change, it appears to be broken somehow. | 2010-05-04 | 1 | -6/+3 | ||
| | ||||||
* | Make signal handler setup/teardown two common functions instead of six, | 2010-05-03 | 1 | -3/+6 | ||
| | | | | | and reset SIGCHLD after fork to fix problems with some shells. From Romain Francois. | |||||
* | Merge copy mode and output mode, dropping the latter. Idea and code from | 2010-04-06 | 1 | -6/+6 | ||
| | | | | Micah Cowan. | |||||
* | Run job commands explicitly in the global enviroment (which can be | 2010-04-04 | 1 | -1/+2 | ||
| | | | | | modified with setenv -g) rather than with the environment tmux started with. | |||||
* | Squash a function that is only called in a callback into the callback | 2010-04-04 | 1 | -2/+1 | ||
| | | | | function. | |||||
* | Dead functions, lint. | 2010-03-22 | 1 | -2/+1 | ||
| | ||||||
* | Add vi-style "jump" commands for copy mode, from Micah Cowan. | 2010-03-22 | 1 | -1/+5 | ||
| | ||||||
* | Support up, down, left, right movement through panes with -UDLR flags to | 2010-03-22 | 1 | -1/+5 | ||
| | | | | | | | select-pane. Also REMOVE the up- and down-pane commands: equivalent behaviour is now available using -t :.+ and -t :.-. | |||||
* | New input parser based on http://vt100.net/emu/dec_ansi_parser. | 2010-03-22 | 1 | -28/+25 | ||
| | ||||||
* | Permit keys in copy mode to be prefixed by a repeat count, entered with | 2010-03-02 | 1 | -1/+2 | ||
| | | | | | | [1-9] in vi mode, or M-[1-9] in emacs mode. From Micah Cowan, tweaked a little by me. | |||||
* | copy mode uses the real screen as backing and if it is updated while copying, | 2010-02-19 | 1 | -1/+2 | ||
| | | | | strange things can happen. So, freeze reading from the pty while in copy mode. | |||||
* | Add "N" key to search the opposite way from the last search (reverse of "n"), | 2010-02-11 | 1 | -1/+2 | ||
| | | | | from Micah Cowan. | |||||
* | Use the array.h code for the causes list. | 2010-02-06 | 1 | -5/+7 | ||
| | ||||||
* | Support attaching a client read-only with a new -r flag to the attach-session | 2010-02-06 | 1 | -1/+3 | ||
| | | | | command. | |||||
* | Rectangle copy support, from Robin Lee Powell. | 2010-02-06 | 1 | -3/+5 | ||
| | ||||||
* | Instead of bailing out on the first configuration file error, carry on, | 2010-02-06 | 1 | -2/+7 | ||
| | | | | | collecting all the errors, then start with the active window in more mode displaying them. | |||||
* | vi-style B, W and E keys in copy mode to navigate between words treating only | 2010-02-04 | 1 | -1/+4 | ||
| | | | | | | | spaces as word separators. Also add . to the list of word separators for standard word navigation. From Micah Cowan, tweaked slightly by me. | |||||
* | Add scroll-up/scroll-down for choose/more mode, from Micah Cowan. | 2010-02-01 | 1 | -1/+3 | ||
| | ||||||
* | Alter next-word to have vi-like movement behaviour, and add next-word-end with | 2010-01-27 | 1 | -1/+2 | ||
| | | | | the existing emacs behaviour. From Micah Cowan. | |||||
* | Top/bottom of history mode keys, diff from Micah Cowan, tweaked by me. | 2010-01-25 | 1 | -1/+3 | ||
| | ||||||
* | New command, join-pane, to split and move an existing pane into the space (like | 2010-01-07 | 1 | -3/+5 | ||
| | | | | splitw then movep, or the reverse of breakp). | |||||
* | Options to set the colour of the pane borders, with different colours for the | 2010-01-03 | 1 | -2/+4 | ||
| | | | | active pane. | |||||
* | Allow keys to be replaced and reorder the table so that terminfo-defined keys | 2009-12-17 | 1 | -3/+3 | ||
| | | | | (or terminal-overrides) take precedence over internally defined. | |||||
* | New server option, escape-time, to set the timeout used to detect if escapes | 2009-12-14 | 1 | -5/+2 | ||
| | | | | are alone or part of a function key or meta sequence. | |||||
* | Add "server options" which are server-wide and not bound to a session or | 2009-12-10 | 1 | -1/+3 | ||
| | | | | | | | 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. | |||||
* | Permit panes to be referred to as "top", "bottom", "top-left" etc, if the right | 2009-12-08 | 1 | -1/+4 | ||
| | | | | pane can be identified. | |||||
* | Massive spaces->tabs and trailing whitespace cleanup, hopefully for the last | 2009-12-03 | 1 | -65/+65 | ||
| | | | | | time now I've configured emacs to make them displayed in really annoying colours... | |||||
* | Eliminate duplicate code and ease the passage for server-wide options by adding | 2009-12-03 | 1 | -21/+7 | ||
| | | | | | | | 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. | |||||
* | New command, capture-pane, which copies the entire pane contents to a paste | 2009-12-01 | 1 | -1/+2 | ||
| | | | | buffer. From Jonathan Alvarado. | |||||
* | Handle partial xterm function key sequences. | 2009-11-30 | 1 | -2/+2 | ||
| | ||||||
* | This doesn't need to be u_int. | 2009-11-26 | 1 | -2/+2 | ||
| | ||||||
* | Tidy up various bits of the paste code, make the data buffer char * and add | 2009-11-26 | 1 | -4/+4 | ||
| | | | | comments. | |||||
* | Remove a couple of unused arguments where possible, and add /* ARGSUSED */ to | 2009-11-26 | 1 | -3/+3 | ||
| | | | | the rest to reduce lint output. |