aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Enhance paste-buffer to allow lines to be separated by any string, fromNicholas Marriott2010-05-19
| | | | Andrea Barisani.
* Colour+attribute options for status line alerts, from Alex Alexander.Nicholas Marriott2010-05-14
|
* Accept (and document) "none" instead of "default" for attributes as itNicholas Marriott2010-05-14
| | | | is clearer and avoids confusion with default colours.
* Use $OpenBSD$.Nicholas Marriott2010-05-14
|
* Catch SIGHUP and terminate if running as a client. This prevents clientsJoel Sing2010-05-12
| | | | | | | from being left hanging around when, for example, a SSH session is disconnected. ok nicm@
* Identical behaviour to select-prompt can now be obtained withNicholas Marriott2010-05-05
| | | | | 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.Nicholas Marriott2010-05-04
|
* Revert last change, it appears to be broken somehow.Nicholas Marriott2010-05-04
|
* Make signal handler setup/teardown two common functions instead of six,Nicholas Marriott2010-05-03
| | | | | and reset SIGCHLD after fork to fix problems with some shells. From Romain Francois.
* Make C-] and other punctuation-based control key combinations work again.Ryan McBride2010-05-03
| | | | ok nicm
* sort options.Igor Sobrado2010-05-02
|
* Make the active pane border have a green foreground instead ofNicholas Marriott2010-04-28
| | | | background by default.
* Fix crash when resizing in copy mode, when cursor can end up outside screen.Nicholas Marriott2010-04-28
| | | | Reported by Romain Francois, fixed by Micah Cowan.
* imsg.h does not need sys/tree.h.Nicholas Marriott2010-04-27
| | | | ok eric
* Add a tiled layout, originally from Liam Bedford a while ago, fixed upNicholas Marriott2010-04-25
| | | | by me.
* When converting A-Z into a control character, want to subtract 64 notNicholas Marriott2010-04-23
| | | | 65... whoops.
* Mark zombie windows as dead in choose-window list, from Romain Francoise.Nicholas Marriott2010-04-21
|
* Rewrite key string conversions to be readable and to work properly forNicholas Marriott2010-04-21
| | | | multiple modifiers.
* Catch SIGCHLD to avoid a zombie, from patrick keshishian.Nicholas Marriott2010-04-18
|
* Fix typo in escape state table leading to fatal() when \033} or \033~Nicholas Marriott2010-04-17
| | | | was entered, from Chris Johnsen.
* If remain-on-exit is set, both the error callback and a SIGCHLD couldNicholas Marriott2010-04-17
| | | | | | destroy the same pane (because the first one doesn't remove it from the list of panes), causing the pane bufferevent to be freed twice. So don't free it if the fd has already been set to -1, from Romain Francoise.
* Fix use-after-free of the window link when it is part of a groupedNicholas Marriott2010-04-17
| | | | session (and hence could have been recreated), from Micah Cowan.
* Remove XXX comment and just close received fd if calloc() fails.Nicholas Marriott2010-04-07
| | | | | | | | | If this happens the imsg may no longer be usable as there may be queued messages, but this is a) already the case with the code now, and b) would be the case if recvmsg() fails anyway, so we can document that -1 from imsg_read() invalidates the struct imsgbuf. discussed with and ok eric
* Merge copy mode and output mode, dropping the latter. Idea and code fromNicholas Marriott2010-04-06
| | | | Micah Cowan.
* Mention title setting, and the new default.Nicholas Marriott2010-04-05
|
* rather than using an empty "" as the default window title, put the hostnameBob Beck2010-04-04
| | | | | | | | | of the machine we are running on in there. makes my many green lines easier to deal with without using fiddly options to set it. ok nicm@
* tweak;Jason McIntyre2010-04-04
|
* 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.