aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Should be -s for src pane.Nicholas Marriott2010-04-04
|
* Dead assignment, found with clang.Nicholas Marriott2010-04-04
|
* Run job commands explicitly in the global enviroment (which can beNicholas Marriott2010-04-04
| | | | | modified with setenv -g) rather than with the environment tmux started with.
* Squash a function that is only called in a callback into the callbackNicholas Marriott2010-04-04
| | | | function.
* Don't accept keys with modifiers as input. Fixes crash reported by BrianNicholas Marriott2010-03-31
| | | | R Landy.
* Don't leak job command in #().Nicholas Marriott2010-03-27
|
* -a flag to insert a window after an existing one, moving other windowsNicholas Marriott2010-03-27
| | | | up necessary.
* dispense with some wacky escape sequences;Jason McIntyre2010-03-26
|
* Dead functions, lint.Nicholas Marriott2010-03-22
|
* Reset output functions too when changing client after attaching, toNicholas Marriott2010-03-22
| | | | avoid crash if a command in a sequence after new/attach causes output.
* paste-buffer should be per pane, from C. Coutinho.Nicholas Marriott2010-03-22
|
* Nuke unused variable.Nicholas Marriott2010-03-22
|
* Add vi-style "jump" commands for copy mode, from Micah Cowan.Nicholas Marriott2010-03-22
|
* Support up, down, left, right movement through panes with -UDLR flags toNicholas Marriott2010-03-22
| | | | | | | select-pane. Also REMOVE the up- and down-pane commands: equivalent behaviour is now available using -t :.+ and -t :.-.
* Accept a full key match (not a partial) even if there is data left inNicholas Marriott2010-03-22
| | | | the buffer.
* New input parser based on http://vt100.net/emu/dec_ansi_parser.Nicholas Marriott2010-03-22
|
* Fix a use-after-free when cancelling copy mode, or trying to repeat cancel.Nicholas Marriott2010-03-14
| | | | ok kettenis
* Permit keys in copy mode to be prefixed by a repeat count, entered withNicholas Marriott2010-03-02
| | | | | | [1-9] in vi mode, or M-[1-9] in emacs mode. From Micah Cowan, tweaked a little by me.
* Extend the end-of-line key so that in normal mode a second press movesNicholas Marriott2010-03-01
| | | | | | | | the cursor to the end of a wrapped line (if present) and in rectangle mode it toggles between the end of the text and the last cell on the line. From Micah Cowan.
* Check for colour and attribute modifications early so the translatedNicholas Marriott2010-03-01
| | | | | | values can be stored in the cached terminal attributes rather than the requested (untranslated) values. Prevents tmux clearing and setting the attributes for every character when using aixterm colours.
* Typo fix from Tim van der Molen.Nicholas Marriott2010-02-24
|
* Don't set the terminal to nonblocking on detach until we have finished with itNicholas Marriott2010-02-24
| | | | entirely.
* Option to set the characters considered word separators in copy mode, fromNicholas Marriott2010-02-22
| | | | Micah Cowan.
* In load-buffer, read until EOF rather than using stat() and reading a fixedNicholas Marriott2010-02-22
| | | | | size. Allows use of FIFOs and whatnot. From Tiago Cunha, idea from Fulvio Ciriaco.
* Another copy mode fix from Micah Cowan: in rectangle copy mode, the cursorNicholas Marriott2010-02-22
| | | | | should not wrap at the end of the text on the line but should be allowed to move freely.
* Display -t argument to new-session, from Tiago Cunha.Nicholas Marriott2010-02-22
|
* have_arg matches buf so it is no longer necessary, spotted by Tim van derNicholas Marriott2010-02-19
| | | | Molen.
* copy mode uses the real screen as backing and if it is updated while copying,Nicholas Marriott2010-02-19
| | | | strange things can happen. So, freeze reading from the pty while in copy mode.
* Make next-word stop at beginning of word even if it is at the start of theNicholas Marriott2010-02-17
| | | | line, from Micah Cowan.
* Man page additions/improvements, thanks to Robin Lee Powell.Nicholas Marriott2010-02-17
|
* Don't strip add newline if only copying part of wrapped line. Problem spottedNicholas Marriott2010-02-17
| | | | by and fix from Micah Cowan.
* Add "N" key to search the opposite way from the last search (reverse of "n"),Nicholas Marriott2010-02-11
| | | | from Micah Cowan.
* Clarify default status-right, from Seth Wright.Nicholas Marriott2010-02-10
|
* Add an option to disable the smcup/rmcup alternate screen behaviour insideNicholas Marriott2010-02-08
| | | | tmux. From clemens fischer.
* next-layout is bound to Space not C-Space.Nicholas Marriott2010-02-07
|
* Use the array.h code for the causes list.Nicholas Marriott2010-02-06
|
* 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).