aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Make sure non-UTF8 mouse coordinates are kept to 8-bit values.Micah Cowan2011-03-04
|
* +.Nicholas Marriott2011-02-28
|
* Sync OpenBSD patchset 862:Tiago Cunha2011-02-15
| | | | | Size on split-window is -l not -s. Doh.
* Sync OpenBSD patchset 861:Tiago Cunha2011-02-15
| | | | | Don't require -d with -x or -y since it could be in the config file.
* Sync OpenBSD patchset 860:Tiago Cunha2011-02-15
| | | | | Redraw pane borders when switching to last pane.
* Sync OpenBSD patchset 859:Tiago Cunha2011-02-15
| | | | | Free old argument even if setting to NULL.
* Sync OpenBSD patchset 858:Tiago Cunha2011-02-15
| | | | | | Accept tcgetattr/tcsetattr failure, fixes problems with fatal() if the terminal disappears while locked.
* Sync OpenBSD patchset 857:Tiago Cunha2011-02-15
| | | | | | Use input_clear to reset the APC, DCS, OSC state or it could be reused improperly by a later state. From Kevin Goodsell.
* Sync OpenBSD patchset 856:Tiago Cunha2011-02-15
| | | | | Unused declaration.
* Sync OpenBSD patchset 855:Tiago Cunha2011-02-15
| | | | | | | | | | | | | | | | | | | Simplify the way jobs work and drop the persist type, so all jobs are fire-and-forget. Status jobs now managed with two trees of output (new and old), rather than storing the output in the jobs themselves. When the status line is processed any jobs which don't appear in the new tree are started and the output from the old tree displayed. When a job finishes it updates the new tree with its output and that is used for any subsequent redraws. When the status interval expires, the new tree is moved to the old so that all jobs are run again. This fixes the "#(echo %H:%M:%S)" problem which would lead to thousands of identical persistent jobs and high memory use (this can still be achieved by adding "sleep 30" but that is much less likely to happen by accident).
* Sync OpenBSD patchset 854:Tiago Cunha2011-02-15
| | | | | Use LIST_* not SLIST_*.
* Sync OpenBSD patchset 853:Tiago Cunha2011-02-15
| | | | | | When clearing the entire screen, clear lines that are used into the history like xterm does. Requested ages ago by someone I've forgotten.
* Sync OpenBSD patchset 852:Tiago Cunha2011-02-15
| | | | | | Check if the index is in use and fail before creating the child process, rather than leaving a stray child on failure.
* Sync OpenBSD patchset 848:Tiago Cunha2011-02-14
| | | | | Set $TMUX without the session when background jobs are run.
* Spacing.Nicholas Marriott2011-02-14
|
* Expand an entry.Nicholas Marriott2011-02-12
|
* Solaris is SunOS.Nicholas Marriott2011-02-11
|
* Remove some that are done and some that are duplicates or no longer needed.Nicholas Marriott2011-01-26
|
* While here, maximum percentage is 100 not INT_MAX. Oops.Nicholas Marriott2011-01-23
|
* Size is -l not -s.Nicholas Marriott2011-01-23
|
* Make bind-key accept characters with the top-bit-set and print them as octal.Tiago Cunha2011-01-22
|
* Sync OpenBSD patchset 847:Tiago Cunha2011-01-22
| | | | | Fix bind-key -t.
* Sync OpenBSD patchset 846:Tiago Cunha2011-01-21
| | | | | | Only set a mouse mode for mouse-select-pane if none already set by the mode (any will do).
* Sync OpenBSD patchset 845:Tiago Cunha2011-01-21
| | | | | | Mouse highlight mode (1001) requires a program to cooperate so supporting it through tmux is not as easy as this, remove it for now.
* Sync OpenBSD patchset 844:Tiago Cunha2011-01-21
| | | | | | Support -x and -y for new-session to specify the initial size of the window if created detached with -d.
* Sync OpenBSD patchset 843:Tiago Cunha2011-01-21
| | | | | The maximum history-limit was accidentally reduced, fix it back to INT_MAX.
* Sync OpenBSD patchset 842:Tiago Cunha2011-01-21
| | | | | Clarify alternate-screen description a little.
* Sync OpenBSD patchset 841:Tiago Cunha2011-01-21
| | | | | Er, fix next and previous session functions to actually work, part 2.
* Sync OpenBSD patchset 840:Tiago Cunha2011-01-21
| | | | | Fix next and previous session functions to actually work.
* Sync OpenBSD patchset 839:Tiago Cunha2011-01-21
| | | | | | Log termios backspace for each client since it is used to recognise backspace input.
* Sync OpenBSD patchset 838:Tiago Cunha2011-01-21
| | | | | Use TMPDIR if set, from Han Boetes.
* Sync OpenBSD patchset 837:Tiago Cunha2011-01-21
| | | | | unbind-key -a is allowed no arguments.
* Sync OpenBSD patchset 836:Tiago Cunha2011-01-21
| | | | | Remove a bit of text that makes exit-unattached description unclear.
* Sync OpenBSD patchset 835:Tiago Cunha2011-01-21
| | | | | Add missing arguments to some options.
* Sync OpenBSD patchset 834:Tiago Cunha2011-01-21
| | | | | | | Move all calls to fcntl(...O_NONBLOCK) into a function and clear the flag on the stdio file descriptors before closing them (fixes things like "tmux ls && cat").
* Sync OpenBSD patchset 833:Tiago Cunha2011-01-21
| | | | | | Accept colours of the hex form #ffffff and translate to the nearest from the xterm(1) 256-colour set.
* Link with libm due to the upcoming patchset.Tiago Cunha2011-01-21
|
* Support for HP-UX.Nicholas Marriott2011-01-21
|
* Only have one asprintf implementation, that's likely to always work.Nicholas Marriott2011-01-21
|
* Whoops, did not mean to do this.Nicholas Marriott2011-01-13
|
* osdep-linux.cNicholas Marriott2011-01-13
|
* Trim spaces.Nicholas Marriott2011-01-10
|
* Better __progname check.Nicholas Marriott2011-01-10
|
* Copy osdep-unknown.c for AIX to make @PLATFORM@ work.Nicholas Marriott2011-01-10
|
* Check for optarg, optind, optreset.Nicholas Marriott2011-01-10
|
* +.Nicholas Marriott2011-01-09
|
* +.Nicholas Marriott2011-01-07
|
* Sync OpenBSD patchset 813:Tiago Cunha2011-01-07
| | | | | | Add a function to create window flags rather than doing the same thing in two places. From Thomas Adam.
* Bring the last remaining bits of dist.mk.Tiago Cunha2011-01-07
|
* Sync OpenBSD patchset 832:Tiago Cunha2011-01-07
| | | | | Whoops, command-prompt can take 0 or 1 argument.