aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* 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.
* 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.