aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Make double start-of-line do what double end-of-line does, on wrapped lines.Micah Cowan2010-06-05
|
* Allow C-Space to work correctly once again, and forbid nonsensical ↵Micah Cowan2010-06-05
| | | | combinations such as C-Enter or C-Escape.
* +.Nicholas Marriott2010-05-27
|
* +.Nicholas Marriott2010-05-24
|
* Pass in the session, rather than the client, to window modes' key() function.Micah Cowan2010-05-22
| | | | | We were only ever using the client to find the session anyway.
* Spacing nits.Nicholas Marriott2010-05-19
|
* Solaris 9 is missing CMSG_ALIGN and some of the RFC2292 CMSG_*. FromNicholas Marriott2010-05-19
| | | | | Dagobert Michelsen.
* Solaris 9 doesn't have setenv and unsetenv so add compat versions, basedNicholas Marriott2010-05-19
| | | | | on code from Dagobert Michelsen.
* Fix bad merge, from Romain Francoise.Nicholas Marriott2010-05-16
|
* +.Nicholas Marriott2010-05-14
|
* Update.Tiago Cunha2010-05-14
|
* Sync OpenBSD patchset 698:Tiago Cunha2010-05-14
| | | | | | | | | Catch SIGHUP and terminate if running as a client. This prevents clients from being left hanging around when, for example, a SSH session is disconnected. ok nicm@
* Sync OpenBSD patchset 697:Tiago Cunha2010-05-14
| | | | | | | Identical behaviour to select-prompt can now be obtained with command-prompt, so remove select-prompt and change ' to be bound to command-prompt -p index "select-window -t :%%".
* Sync OpenBSD patchset 696:Tiago Cunha2010-05-14
| | | | | | | Make signal handler setup/teardown two common functions instead of six, and reset SIGCHLD after fork to fix problems with some shells. From Romain Francoise.
* Sync OpenBSD patchset 693:Tiago Cunha2010-05-14
| | | | | | | Make C-] and other punctuation-based control key combinations work again. ok nicm
* Sync OpenBSD patchset 692:Tiago Cunha2010-05-14
| | | | | sort options.
* Sync OpenBSD patchset 691:Tiago Cunha2010-05-14
| | | | | | Make the active pane border have a green foreground instead of background by default.
* Sync OpenBSD patchset 688:Tiago Cunha2010-05-14
| | | | | | Add a tiled layout, originally from Liam Bedford a while ago, fixed up by me.
* Use LC_ALL for sed too since apparently some platforms play silly gamesNicholas Marriott2010-05-12
| | | | | in other locales.
* +.Nicholas Marriott2010-05-12
|
* +.Nicholas Marriott2010-04-28
|
* Avoid crashing in copy-mode during resize, when our history-viewing offset ↵Micah Cowan2010-04-28
| | | | is larger than the new total number of history lines.
* When converting A-Z into a control character, want to subtract 64 notNicholas Marriott2010-04-23
| | | | | 65... whoops.
* Use INSTALL so people on Solaris can set it to ginstall.Nicholas Marriott2010-04-23
|
* Support NetBSD 6 which will now have its own terminfo (yay).Nicholas Marriott2010-04-23
|
* Sync OpenBSD patchset 686:Tiago Cunha2010-04-22
| | | | | Mark zombie windows as dead in choose-window list, from Romain Francoise.
* Sync OpenBSD patchset 685:Tiago Cunha2010-04-22
| | | | | | Rewrite key string conversions to be readable and to work properly for multiple modifiers.
* Sync OpenBSD patchset 684:Tiago Cunha2010-04-22
| | | | | Catch SIGCHLD to avoid a zombie, from patrick keshishian.
* Done.Nicholas Marriott2010-04-21
|
* Don't set user and group with install, from Nicolas Pinto.Nicholas Marriott2010-04-21
|
* Sync OpenBSD patchset 683:Tiago Cunha2010-04-18
| | | | | | Fix typo in escape state table leading to fatal() when \033} or \033~ was entered, from Chris Johnsen.
* Sync OpenBSD patchset 682:Tiago Cunha2010-04-18
| | | | | | | | If remain-on-exit is set, both the error callback and a SIGCHLD could 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.
* +.Nicholas Marriott2010-04-18
|
* Sync OpenBSD patchset 680:Tiago Cunha2010-04-12
| | | | | | | | | | | | Remove XXX comment and just close received fd if calloc() fails. 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
* Don't try to use a window-link that may have been freed.Micah Cowan2010-04-09
| | | | | | | | | | | | | | | | | | In the case where a join-pane is performed from within a grouped session, and the source pane had no siblings in the window (causing the window to be destroyed), there was an invalid access of the destination window link (which had been destroyed as part of the group session's resynchronization with the original session, due to killing the now-empty source window). CVS: ---------------------------------------------------------------------- CVS: Enter Log. Lines beginning with `CVS:' are removed automatically CVS: CVS: Committing in . CVS: CVS: Modified Files: CVS: cmd-join-pane.c CVS: ----------------------------------------------------------------------
* there can be only one rpathbufNicholas Marriott2010-04-08
|
* Sync nit.Nicholas Marriott2010-04-06
|
* Unbreak. Whoops.Nicholas Marriott2010-04-06
|
* Man page sync.Nicholas Marriott2010-04-06
|
* From Bob Beck:Nicholas Marriott2010-04-06
| | | | | | | | | rather than using an empty "" as the default window title, put the hostname 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.
* -s src-pane.Nicholas Marriott2010-04-06
|
* Dead assignment.Nicholas Marriott2010-04-06
|
* Run job commands explicitly in the global enviroment (which can beNicholas Marriott2010-04-06
| | | | | | modified with setenv -g) rather than with the environment tmux started with.
* Squash a function that is only called in a callback into theNicholas Marriott2010-04-06
| | | | | callback function.
* Stupid style nits.Nicholas Marriott2010-04-06
|
* window-more.c is now defunct.Nicholas Marriott2010-04-06
|
* +.Nicholas Marriott2010-04-05
|
* FreeBSD kqueue is broken before 8.Nicholas Marriott2010-04-05
|
* Merge output (more) and copy modes into one single mode (called copy).Micah Cowan2010-04-05
|
* libevent needs librt on Linux, from Aaron Isotton.Nicholas Marriott2010-04-02
|