aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Sync OpenBSD patchset 749:Tiago Cunha2010-08-11
| | | | | | Do not allow duplicate session names to be created, reported by Dominik Honnef, patch from Thomas Adam.
* Sync OpenBSD patchset 748:Tiago Cunha2010-08-11
| | | | | | Handle failure to change mode, to avoid dying when switching into copy mode when already in a different mode. Reported by "Florian".
* Sync OpenBSD patchset 747:Tiago Cunha2010-08-11
| | | | | Usage string fixes from Ben Boeckel.
* Sync OpenBSD patchset 746:Tiago Cunha2010-08-11
| | | | | | Treat trying to link or move to the same window as an error to avoid removing it accidentally.
* Sync OpenBSD patchset 745:Tiago Cunha2010-08-11
| | | | | | | | | | | | Change the way backoff works. Instead of stopping reading from the pty when the client tty backs up too much, just stop updating the tty and only update the internal screen. Then when the tty recovers, force a redraw. This prevents a dodgy client from causing other clients to go into backoff while still allowing tmux to be responsive (locally) when seeing lots of output.
* Sync OpenBSD patchset 744:Tiago Cunha2010-08-11
| | | | | | Show which pane is active in the list-panes output, suggested by Dominik Honnef.
* Sync OpenBSD patchset 742:Tiago Cunha2010-08-09
| | | | | dup() the stdin fd so it isn't closed twice (once for stdin, once for tty).
* Sync OpenBSD patchset 741:Tiago Cunha2010-08-09
| | | | | | | | | | | | | | | | | | | | When changing so that the client passes its stdout and stderr as well as stdin up to the server, I forgot one essential point - the tmux server could now be both the producer and consumer. This happens when tmux is run inside tmux, as well as when piping tmux commands together. So, using stdio(3) was a bad idea - if sufficient data was written, this could block in write(2). When that happened and the server was both producer and consumer, it deadlocks. Change to use libevent bufferevents for the client stdin, stdout and stderr instead. This is trivial enough for output but requires a callback mechanism to trigger when stdin is finished. This relies on the underlying polling mechanism for libevent to work with whatever devices to which the user could redirect stdin, stdout or stderr, hence the change to use poll(2) over kqueue(2) for tmux.
* Basic GNU bash completion from Frank Barknecht.Nicholas Marriott2010-08-09
|
* How to blank on lock, from Thomas Adam, slightly tweaked by me.Nicholas Marriott2010-07-31
|
* No more up-pane/down-pane.Nicholas Marriott2010-07-31
|
* Sync with reality, per SF bug #3035214.Tiago Cunha2010-07-27
|
* Don't enable/disable invalid event pointers. Fixes SF #3033119.Micah Cowan2010-07-22
|
* Sync OpenBSD patchset 738:Tiago Cunha2010-07-20
| | | | | | | Don't return if in the current window since we may want to report a bell (if bell-action any/current), just clear the flag so the status line doesn't show the bell.
* Sync OpenBSD patchset 737:Tiago Cunha2010-07-20
| | | | | Send the \n to stdout with the message, not stderr... doh.
* Solaris has MAXHOSTNAMELEN in netdb.h.Nicholas Marriott2010-07-19
|
* Don't hard-code the username.Tiago Cunha2010-07-19
|
* Working on 1.4.Tiago Cunha2010-07-18
|
* Changes for 1.3.Tiago Cunha2010-07-18
|
* Done.Tiago Cunha2010-07-18
|
* Bump VERSION, and comment FDEBUG.Tiago Cunha2010-07-18
|
* Sync OpenBSD patchset 736:Tiago Cunha2010-07-17
| | | | | some escapes i missed;
* Sync OpenBSD patchset 735:Tiago Cunha2010-07-17
| | | | | | Make pane/window wrapping more logical (so with 10 windows, +10 from window 5 stays in the same place), and tidy the code. From Tiago Cunha.
* Sync OpenBSD patchset 734:Tiago Cunha2010-07-17
| | | | | | | | | Return the command client return code with MSG_EXIT now that MSG_ERROR and MSG_PRINT are unused. New clients should be compatible with old tmux servers but vice versa may print an error.
* Sync OpenBSD patchset 733:Tiago Cunha2010-07-02
| | | | | replace some magic mouse constants with defines for clarity. ok nicm
* Sync OpenBSD patchset 732:Tiago Cunha2010-07-02
| | | | | | | Custom layouts. list-windows command displays the layout as a string (such as "bb62,159x48,0,0{79x48,0,0,79x48,80,0}") and it can be applied to another window (with the same number of panes or fewer) using select-layout.
* Sync OpenBSD patchset 731:Tiago Cunha2010-07-02
| | | | | | | | | | Send all three of stdin, stdout, stderr from the client to the server, so that commands can directly make use of them. This means that load-buffer and save-buffer can have "-" as the file to read from stdin or write to stdout. This is a protocol version bump so the tmux server will need to be restarted after upgrade (or an older client used).
* Sync OpenBSD patchset 730:Tiago Cunha2010-07-02
| | | | | | | Store the current working directory in the session, change the default-path option to default to empty and make that mean that the stored session CWD is used.
* Update.Tiago Cunha2010-07-02
|
* Sync OpenBSD patchset 729:Tiago Cunha2010-07-02
| | | | | | | New option, detach-on-destroy, to set what happens to a client when the session it is attached to is destroyed. If on (the default), it is detached; if off, it is switched to the most recently active session.
* Sync OpenBSD patchset 728:Tiago Cunha2010-07-02
| | | | | Use server_destroy_session() for kill-session.
* Sync OpenBSD patchset 727:Tiago Cunha2010-07-02
| | | | | | | | | | | | | Setting the cmdlist pointer in the bind-key to NULL to prevent it being freed after the command is executing is bogus because it may still be needed if the same command is going to be executed again (for example if you "bind-key a bind-key b ..."). Making a copy is hard, so instead add a reference count to the cmd_list. While here, also print bind-key -n and the rest of the flags properly. Fixes problem reported by mcbride@.
* Update.Tiago Cunha2010-06-22
|
* Nuke vis.h.Tiago Cunha2010-06-22
|
* Sync OpenBSD patchset 726:Tiago Cunha2010-06-22
| | | | | Add a choose-buffer command for easier use of the paste buffer stack.
* Sync OpenBSD patchset 725:Tiago Cunha2010-06-22
| | | | | | Extend the -t:+ and -t:- window targets for next and previous window to accept an offset such as -t:+2. From Tiago Cunha.
* Sync OpenBSD patchset 724:Tiago Cunha2010-06-22
| | | | | | Having a list of winlinks->alerts for each session is stupid, just store the alert flags directly in the winlink itself.
* Sync OpenBSD patchset 723:Tiago Cunha2010-06-22
| | | | | Rename activity->alert in a couple of functions for consistency.
* Sync OpenBSD patchset 722:Tiago Cunha2010-06-22
| | | | | | | Give tmux sockets (but not the containing folder) group permissions. This allows hardlinks to the sockets to be used more easily.
* Done.Nicholas Marriott2010-06-21
|
* +.Nicholas Marriott2010-06-21
|
* Ensure we overwrite wide characters properly, and never overwrite characters ↵Micah Cowan2010-06-16
| | | | | | | we weren't overlapping. Fixes "disappearing wide characters" glitch.
* Sync OpenBSD patchset 720:Tiago Cunha2010-06-15
| | | | | | | | | Last change erroneously used the target argument for looking up the client which caused pipe-pane to fail when used from the command line. Instead pass NULL which should use the current client. Spotted by Tiago Cunha.
* Sync OpenBSD patchset 719:Tiago Cunha2010-06-15
| | | | | Add a missing command and some missing Ic, from Tiago Cunha.
* +.Nicholas Marriott2010-06-13
|
* imsg was moved into libutil on OpenBSD.Tiago Cunha2010-06-06
|
* Sync OpenBSD patchset 717:Tiago Cunha2010-06-06
| | | | | Couple of missing command aliases/flags, from Tiago Cunha.
* Sync OpenBSD patchset 716:Tiago Cunha2010-06-06
| | | | | | | | | | | | | | | | | | | | Fix problems with window sizing seen by Raghavendra D Prabhu when starting tmux from .xinitrc. One of the very few things the server relies on the client for now is to pass through a message on SIGWINCH, but there is a condition where potentially a SIGWINCH may be lost during the transition from unattached (main.c) to attached (client.c). So trigger a size change immediately after the client installs its SIGWINCH handler. Also, when the terminal is resized, reset the scroll region and cursor position. Previously, we were clearing our saved idea of these, but in fact some terminals do not reset them on resize, so this caused problems during redraw. While here make a resize to the same size not cause a redraw and rename the tmux.out output log file to include the tmux PID.
* Sync OpenBSD patchset 715:Tiago Cunha2010-06-06
| | | | | | Support the status_replace # replacement sequences in the pipe-pane command, thanks to Andrea Barisani.
* Sync OpenBSD patchset 714:Tiago Cunha2010-06-06
| | | | | Shut up gcc4 warnings.