aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* 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.
* Remove dead files entries.Tiago Cunha2011-01-07
|
* Sync OpenBSD patchset 831:Tiago Cunha2011-01-07
| | | | | | | | | Now that parsing is common, merge some of the small, related commands together to use the same code. Also add some arguments (such as -n and -p) to some commands to match existing commands.
* Sync OpenBSD patchset 830:Tiago Cunha2011-01-07
| | | | | argc will be 1 not 2 with no option value.
* cmd-generic.c isn't needed anymore due to OpenBSD patchset 829.Tiago Cunha2011-01-07
|
* Remove compat include.Tiago Cunha2011-01-07
|
* More _SOURCES.Tiago Cunha2011-01-07
|
* Sync OpenBSD patchset 829:Tiago Cunha2011-01-07
| | | | | | | | | | | | | | | | | | | | | | Clean up and simplify tmux command argument parsing. Originally, tmux commands were parsed in the client process into a struct with the command data which was then serialised and sent to the server to be executed. The parsing was later moved into the server (an argv was sent from the client), but the parse step and intermediate struct was kept. This change removes that struct and the separate parse step. Argument parsing and printing is now common to all commands (in arguments.c) with each command left with just an optional check function (to validate the arguments at parse time), the exec function and a function to set up any key bindings (renamed from the old init function). This is overall more simple and consistent. There should be no changes to any commands behaviour or syntax although as this touches every command please watch for any unexpected changes.
* Sync OpenBSD patchset 828:Tiago Cunha2011-01-07
| | | | | | | | | | | | Support for UTF-8 mouse input (\033[1005h). This was added in xterm 262 and supports larger terminals than the older way. If the new mouse-utf8 option is on, UTF-8 mouse input is enabled for all UTF-8 terminals. The option defaults to on if LANG etc are set in the same manner as the utf8 option. With help and based on code from hsim at gmx.li.
* Sync OpenBSD patchset 827:Tiago Cunha2011-01-07
| | | | | | Handle a # at the end of a replacement string (such as status-left) correctly. Found by Thomas Adam.
* Missing HAVE_STDINT_H.Nicholas Marriott2011-01-07
|
* Whoops, bad copy and paste.Nicholas Marriott2011-01-04
|
* Support --enable-static.Nicholas Marriott2011-01-04
|
* libevent-2 works now as well.Tiago Cunha2011-01-03
|
* Zap paths.h include.Tiago Cunha2011-01-03
|
* Update _SOURCES.Tiago Cunha2011-01-03
|