aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Support attaching a client read-only with a new -r flag to the attach-sessionNicholas Marriott2010-02-06
| | | | command.
* Change nested check to compare server socket path rather than just assumingNicholas Marriott2010-02-06
| | | | that if $TMUX is set it is nested. From Micah Cowan.
* Clean up $TMUX parsing, from Micah Cowan, tweaked by me.Nicholas Marriott2010-02-06
|
* Rectangle copy support, from Robin Lee Powell.Nicholas Marriott2010-02-06
|
* Instead of bailing out on the first configuration file error, carry on,Nicholas Marriott2010-02-06
| | | | | 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 onlyNicholas Marriott2010-02-04
| | | | | | | spaces as word separators. Also add . to the list of word separators for standard word navigation. From Micah Cowan, tweaked slightly by me.
* Read the path from $TMUX if it is present and -L and -S are not given. Based onNicholas Marriott2010-02-04
| | | | a diff from Micah Cowan.
* Option to display the active pane in a different colour with the display-panesNicholas Marriott2010-02-04
| | | | command. From Paul Hoffman, thanks.
* Fix divide by zero on small windows with main-* layouts.Nicholas Marriott2010-02-03
|
* If redrawing line 0 of the screen onto the tty, there can't be a wrap flag onNicholas Marriott2010-02-01
| | | | | the previous line, so move the cursor. Fixes status line redraw issues when resizing in choose mode and hopefully at other times as well.
* Add scroll-up/scroll-down for choose/more mode, from Micah Cowan.Nicholas Marriott2010-02-01
|
* Remove unnecessary comparison, pointed out by Tiago Cunha.Nicholas Marriott2010-01-31
|
* Fix DPADD, from Brad.Nicholas Marriott2010-01-31
|
* Don't stop parsing command sequences when a command requests the client toNicholas Marriott2010-01-30
| | | | stick around (attach-session/new-session).
* Ignore SIGHUP as well.Nicholas Marriott2010-01-30
|
* Typo, from Micah Cowan.Nicholas Marriott2010-01-28
|
* Actually bind the new key to e.Nicholas Marriott2010-01-27
|
* Calculate offset correctly, fixes incorrect offset and prevents crash whenNicholas Marriott2010-01-27
| | | | status-left is empty. From Micah Cowan.
* Alter next-word to have vi-like movement behaviour, and add next-word-end withNicholas Marriott2010-01-27
| | | | the existing emacs behaviour. From Micah Cowan.
* Actually use the copy made when no newline is found, from martynas@.Nicholas Marriott2010-01-26
|
* Hugely simplify window_copy_cursor_next_word, which was way overcomplicated.Nicholas Marriott2010-01-25
|
* Update the selection properly after goto line or searching.Nicholas Marriott2010-01-25
|
* Top/bottom of history mode keys, diff from Micah Cowan, tweaked by me.Nicholas Marriott2010-01-25
|
* Redraw properly when scrolling backward and the cursor is on the lastNicholas Marriott2010-01-24
| | | | line. Based on a fix from Micah Cowan.
* When a window is destroyed, remove all links to it from each session ratherNicholas Marriott2010-01-23
| | | | than just the first. Reported by Robin Lee Powell.
* Don't leak if arguments appear multiple times, from Tiago Cunha.Nicholas Marriott2010-01-23
|
* Use C-e and C-y for scrolling in vi mode, from Micah Cowan.Nicholas Marriott2010-01-23
|
* Don't leak line, from Tiago Cunha.Nicholas Marriott2010-01-20
|
* Permit !, + and - to be used for window targets to specify last window (!), orNicholas Marriott2010-01-19
| | | | | | next and previous window by number (+ and -). Also tidy an if in cmd-new-window.c.
* 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.