summaryrefslogtreecommitdiff
path: root/usr.bin/tmux
AgeCommit message (Collapse)Author
2010-02-11Add "N" key to search the opposite way from the last search (reverse of "n"),Nicholas Marriott
from Micah Cowan.
2010-02-10Clarify default status-right, from Seth Wright.Nicholas Marriott
2010-02-08Add an option to disable the smcup/rmcup alternate screen behaviour insideNicholas Marriott
tmux. From clemens fischer.
2010-02-07next-layout is bound to Space not C-Space.Nicholas Marriott
2010-02-06Use the array.h code for the causes list.Nicholas Marriott
2010-02-06Support attaching a client read-only with a new -r flag to the attach-sessionNicholas Marriott
command.
2010-02-06Change nested check to compare server socket path rather than just assumingNicholas Marriott
that if $TMUX is set it is nested. From Micah Cowan.
2010-02-06Clean up $TMUX parsing, from Micah Cowan, tweaked by me.Nicholas Marriott
2010-02-06Rectangle copy support, from Robin Lee Powell.Nicholas Marriott
2010-02-06Instead 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-04vi-style B, W and E keys in copy mode to navigate between words treating onlyNicholas 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-04Read the path from $TMUX if it is present and -L and -S are not given. Based onNicholas Marriott
a diff from Micah Cowan.
2010-02-04Option to display the active pane in a different colour with the display-panesNicholas Marriott
command. From Paul Hoffman, thanks.
2010-02-03Fix divide by zero on small windows with main-* layouts.Nicholas Marriott
2010-02-01If redrawing line 0 of the screen onto the tty, there can't be a wrap flag onNicholas Marriott
the previous line, so move the cursor. Fixes status line redraw issues when resizing in choose mode and hopefully at other times as well.
2010-02-01Add scroll-up/scroll-down for choose/more mode, from Micah Cowan.Nicholas Marriott
2010-01-31Remove unnecessary comparison, pointed out by Tiago Cunha.Nicholas Marriott
2010-01-31Fix DPADD, from Brad.Nicholas Marriott
2010-01-30Don't stop parsing command sequences when a command requests the client toNicholas Marriott
stick around (attach-session/new-session).
2010-01-30Ignore SIGHUP as well.Nicholas Marriott
2010-01-28Typo, from Micah Cowan.Nicholas Marriott
2010-01-27Actually bind the new key to e.Nicholas Marriott
2010-01-27Calculate offset correctly, fixes incorrect offset and prevents crash whenNicholas Marriott
status-left is empty. From Micah Cowan.
2010-01-27Alter next-word to have vi-like movement behaviour, and add next-word-end withNicholas Marriott
the existing emacs behaviour. From Micah Cowan.
2010-01-26Actually use the copy made when no newline is found, from martynas@.Nicholas Marriott
2010-01-25Hugely simplify window_copy_cursor_next_word, which was way overcomplicated.Nicholas Marriott
2010-01-25Update the selection properly after goto line or searching.Nicholas Marriott
2010-01-25Top/bottom of history mode keys, diff from Micah Cowan, tweaked by me.Nicholas Marriott
2010-01-24Redraw properly when scrolling backward and the cursor is on the lastNicholas Marriott
line. Based on a fix from Micah Cowan.
2010-01-23When a window is destroyed, remove all links to it from each session ratherNicholas Marriott
than just the first. Reported by Robin Lee Powell.
2010-01-23Don't leak if arguments appear multiple times, from Tiago Cunha.Nicholas Marriott
2010-01-23Use C-e and C-y for scrolling in vi mode, from Micah Cowan.Nicholas Marriott
2010-01-20Don't leak line, from Tiago Cunha.Nicholas Marriott
2010-01-19Permit !, + and - to be used for window targets to specify last window (!), orNicholas Marriott
next and previous window by number (+ and -). Also tidy an if in cmd-new-window.c.
2010-01-18Missing Pp, from Tiago Cunha.Nicholas Marriott
2010-01-14Document swap-pane -d.Nicholas Marriott
2010-01-14Permit S- prefix on keys for shift. Relatively few terminals support thisNicholas Marriott
(basically xterm only) and even fewer have them in terminfo (kLFT2 and kRIT2).
2010-01-11key should be an int not a char.Nicholas Marriott
2010-01-08$OpenBSD$ not $Id$Nicholas Marriott
2010-01-08mouse-select-pane has to redraw the borders now too.Nicholas Marriott
2010-01-07New command, join-pane, to split and move an existing pane into the space (likeNicholas Marriott
splitw then movep, or the reverse of breakp).
2010-01-07Fix this properly.Nicholas Marriott
2010-01-07Don't return the root cell if the string doesn't match.Nicholas Marriott
2010-01-07Use the specified pane for size calculations. Doh.Nicholas Marriott
2010-01-07Change split-window to accept a pane target (it should be split-pane butNicholas Marriott
renaming the command would be annoying).
2010-01-06Correctly clear 256-colour flag for aixterm colours.Nicholas Marriott
2010-01-03Fix selection behaviour when the cursor is moved backwards (ie so the selectionNicholas Marriott
start is after the end).
2010-01-03Options to set the colour of the pane borders, with different colours for theNicholas Marriott
active pane.
2010-01-02Use the target print function for copy-mode, spotted by Tiago Cunha.Nicholas Marriott
2010-01-01Use tcflush(3) instead of TIOCFLUSH, from Ed Schouten.Nicholas Marriott