aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| * Missing Pp, from Tiago Cunha.Nicholas Marriott2010-01-18
| |
| * Document swap-pane -d.Nicholas Marriott2010-01-14
| |
| * Permit S- prefix on keys for shift. Relatively few terminals support thisNicholas Marriott2010-01-14
| | | | | | | | (basically xterm only) and even fewer have them in terminfo (kLFT2 and kRIT2).
| * key should be an int not a char.Nicholas Marriott2010-01-11
| |
| * $OpenBSD$ not $Id$Nicholas Marriott2010-01-08
| |
| * mouse-select-pane has to redraw the borders now too.Nicholas Marriott2010-01-08
| |
| * 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).
| * Fix this properly.Nicholas Marriott2010-01-07
| |
| * Don't return the root cell if the string doesn't match.Nicholas Marriott2010-01-07
| |
| * Use the specified pane for size calculations. Doh.Nicholas Marriott2010-01-07
| |
| * Change split-window to accept a pane target (it should be split-pane butNicholas Marriott2010-01-07
| | | | | | | | renaming the command would be annoying).
| * Correctly clear 256-colour flag for aixterm colours.Nicholas Marriott2010-01-06
| |
| * Fix selection behaviour when the cursor is moved backwards (ie so the selectionNicholas Marriott2010-01-03
| | | | | | | | start is after the end).
| * Options to set the colour of the pane borders, with different colours for theNicholas Marriott2010-01-03
| | | | | | | | active pane.
| * Use the target print function for copy-mode, spotted by Tiago Cunha.Nicholas Marriott2010-01-02
| |
| * Use tcflush(3) instead of TIOCFLUSH, from Ed Schouten.Nicholas Marriott2010-01-01
| |
| * Fix the logic so that transition from a 256 colour to default works properly.Nicholas Marriott2009-12-26
| |
| * Nuke some stray debugging.Nicholas Marriott2009-12-26
| |
| * Use sysctl() KERN_PROC2 instead of KERN_PROC, as the latter's ABIPhilip Guenther2009-12-24
| | | | | | | | | | | | is sensitive to changes in struct proc. fixes for warnings and ok nicm@
| * Fix a couple of problems with grouped sessions reported by danh: redrawNicholas Marriott2009-12-22
| | | | | | | | properly and choose the correct last window after a window is killed.
| * Allow keys to be replaced and reorder the table so that terminfo-defined keysNicholas Marriott2009-12-17
| | | | | | | | (or terminal-overrides) take precedence over internally defined.
| * Pass through the aixterm bright colours if the terminal supports them (>= 16Nicholas Marriott2009-12-14
| | | | | | | | colours).
| * Add server options to completion as well.Nicholas Marriott2009-12-14
| |
| * New server option, escape-time, to set the timeout used to detect if escapesNicholas Marriott2009-12-14
| | | | | | | | are alone or part of a function key or meta sequence.
| * Use quiet variable, and add missing sentinel to options array.Nicholas Marriott2009-12-11
| |
| * Add "server options" which are server-wide and not bound to a session orNicholas Marriott2009-12-10
| | | | | | | | | | | | | | 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 rightNicholas Marriott2009-12-08
| | | | | | | | pane can be identified.
| * vte is buggy and doesn't home the cursor after changing the scrollNicholas Marriott2009-12-04
| | | | | | | | region. Several people are hitting this, so add a workaround.
| * Wrap at 80 columns.Nicholas Marriott2009-12-03
| |
| * Massive spaces->tabs and trailing whitespace cleanup, hopefully for the lastNicholas Marriott2009-12-03
| | | | | | | | | | 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 addingNicholas Marriott2009-12-03
| | | | | | | | | | | | | | 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.
| * Reflect the keypad mode of the application so that numlock works.Nicholas Marriott2009-12-02
| |
| * Close the pane if the process died due to a signal, not just if it exitedNicholas Marriott2009-12-02
| | | | | | | | normally.
| * New command, capture-pane, which copies the entire pane contents to a pasteNicholas Marriott2009-12-01
| | | | | | | | buffer. From Jonathan Alvarado.
| * Look for mice and xterm keys before standard function keys as they are lessNicholas Marriott2009-12-01
| | | | | | | | likely to be partial versions.
| * Handle partial xterm function key sequences.Nicholas Marriott2009-11-30
| |
| * Add a couple of comments.Nicholas Marriott2009-11-27
| |
| * This doesn't need to be u_int.Nicholas Marriott2009-11-26
| |
| * Make types clearer and lint happier.Nicholas Marriott2009-11-26
| |
| * Fix type - attributes should be u_char not int.Nicholas Marriott2009-11-26
| |
| * Change paranoia check to check for <= 0 and to avoid warning.Nicholas Marriott2009-11-26
| |
| * Tidy up various bits of the paste code, make the data buffer char * and addNicholas Marriott2009-11-26
| | | | | | | | comments.
| * Continue rather than returning if not a mouse key, to avoid hanging on anyNicholas Marriott2009-11-26
| | | | | | | | function key...
| * Remove a couple of unused arguments where possible, and add /* ARGSUSED */ toNicholas Marriott2009-11-26
| | | | | | | | the rest to reduce lint output.
| * Rename a variable to something more helpful.Nicholas Marriott2009-11-26
| |
| * Get a u_char from the string, otherwise it isn't possible to enter \0377 as itNicholas Marriott2009-11-26
| | | | | | | | | | | | is mistaken for EOF (doh). Also drop an unused argument.
| * Handle the possibility of partial mouse reads, and fix a comment while here.Nicholas Marriott2009-11-26
| |
| * Emulate il1, dl1, ich1 to run (albeit slowly) with vt100 feature set.Nicholas Marriott2009-11-26
| |
| * Output the right keys for application and number keypad modes (they were theNicholas Marriott2009-11-25
| | | | | | | | wrong way round).
| * Add a -p flag to display-message to print the output rather than displaying inNicholas Marriott2009-11-24
| | | | | | | | | | the status line, this allows things like "display -p '#W'" to find the current window index.