aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Sync OpenBSD patchset 713:Tiago Cunha2010-06-06
| | | | | | This ioctl(TIOCGWINSZ) call is no longer necessary, the result is never used and the server now does it later on the tty fd directly.
* Sync OpenBSD patchset 710:Tiago Cunha2010-06-06
| | | | | | | | | | When the mode-mouse option is on, support dragging to make a selection in copy mode. Also support the scroll wheel, although xterm strangely does not ignore it in application mouse mode, causing redraw artifacts when scrolling up (other terminals appear to be better behaved).
* Sync OpenBSD patchset 709:Tiago Cunha2010-06-06
| | | | | | Better to say "command key bindings" since we've just called them command keys.
* Sync OpenBSD patchset 708:Tiago Cunha2010-06-06
| | | | | | There is no real reason not to list all the key bindings here rather than just a selection.
* Sync OpenBSD patchset 706:Tiago Cunha2010-06-06
| | | | | | Rename some imsg bits to make namespace collisions less likely buf to ibuf, buf_read to ibuf_read, READ_BUF_SIZE to IBUF_READ_SIZE.
* Sync OpenBSD patchset 705:Tiago Cunha2010-06-06
| | | | | | Don't die if the client has been detached when the job finishes, just don't display the output.
* Sync OpenBSD patchset 704:Tiago Cunha2010-06-06
| | | | | Fix an out-of-date comment.
* No vis.h in here.Tiago Cunha2010-06-06
|
* Sync OpenBSD patchset 702:Tiago Cunha2010-06-06
| | | | | | Enhance paste-buffer to allow lines to be separated by any string, from Andrea Barisani.
* Sync OpenBSD patchset 701:Tiago Cunha2010-06-05
| | | | | Colour+attribute options for status line alerts, from Alex Alexander.
* Sync OpenBSD patchset 700:Tiago Cunha2010-06-05
| | | | | | Accept (and document) "none" instead of "default" for attributes as it is clearer and avoids confusion with default colours.
* Use a macro-based mask for obtaining a key or modifier-set from the combination.Micah Cowan2010-06-05
| | | | | Display C-@, etc, as C-Space, in list-keys.
* Must allocate for putenv.Nicholas Marriott2010-06-05
|
* Only need to build setenv.c once.Nicholas Marriott2010-06-05
|
* Should be const char *.Nicholas Marriott2010-06-05
|
* 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: ----------------------------------------------------------------------