aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Support #(command) in status-left, and status-right.Tiago Cunha2009-01-29
|
* Ugh. Another inner loop variable reuse bug.Nicholas Marriott2009-01-29
|
* Fix page down, again.Nicholas Marriott2009-01-29
|
* Undo this and just shut lint up.Nicholas Marriott2009-01-29
|
* Nuke debugging.Nicholas Marriott2009-01-29
|
* Mouse in copy mode.Nicholas Marriott2009-01-28
|
* * Better support for at least the most common variant of mouse input: parse ↵Nicholas Marriott2009-01-28
| | | | | | | it and adjust for different panes. Also support mouse in window/session choice mode. * Bring back the fancy window titles with session/window names: it is easy to work around problems with elinks (see FAQ).
* Exit properly when bas password.Nicholas Marriott2009-01-28
|
* -u to start with screen scrolled up.Nicholas Marriott2009-01-27
|
* Avoid warning.Nicholas Marriott2009-01-27
|
* Tweak selection slightly.Nicholas Marriott2009-01-27
|
* Close stdin/stdout/stderr.Nicholas Marriott2009-01-27
|
* Handle cursor on/off better.Nicholas Marriott2009-01-27
|
* Don't use NULL argv.Nicholas Marriott2009-01-27
|
* Done!Nicholas Marriott2009-01-27
|
* Allow status, mode and message attributes to be changed by three new ↵Nicholas Marriott2009-01-27
| | | | | | | options: status-attr, mode-attr, message-attr. A comma-separataed list is accepted containing: bright, dim, underscore, blink, reverse, hidden, italics, for example: set -g status-attr bright,blink From Josh Elsasser, thanks!
* +nitems.Nicholas Marriott2009-01-27
|
* Don't reuse index variable.Nicholas Marriott2009-01-27
|
* Be more clever about picking window name.Nicholas Marriott2009-01-26
|
* Don't screw up UTF-8 combined characters.Nicholas Marriott2009-01-26
|
* Update.Nicholas Marriott2009-01-26
|
* Typos.Nicholas Marriott2009-01-26
|
* load-buffer commandTiago Cunha2009-01-25
|
* Make the caller responsible for allocating memory for the paste buffer dataTiago Cunha2009-01-25
| | | | | | (needed by the load-buffer command when dealing with big files since it'll prevent tmux from dying due to memory exhaustion). From nicm.
* +CHANGES.Nicholas Marriott2009-01-23
|
* Missed a reverse.Nicholas Marriott2009-01-23
|
* Use reverse so status line etc works in terminals w/o colour.Nicholas Marriott2009-01-23
|
* Raise some limits to INT_MAX, SHRT_MAX is too low.Nicholas Marriott2009-01-23
|
* Add -a properly.Nicholas Marriott2009-01-23
|
* Fix this properly...Nicholas Marriott2009-01-23
|
* Fix next/previous page. DOH.Nicholas Marriott2009-01-23
|
* Better error messages for fork.Nicholas Marriott2009-01-23
|
* Return 1 on error. Doh.Nicholas Marriott2009-01-23
|
* Return -1 on error.Nicholas Marriott2009-01-23
|
* Update TODO.Nicholas Marriott2009-01-23
|
* Handle SIGTERM (and kill-server which uses it), a bit more neatly - tidy upNicholas Marriott2009-01-21
| | | | | properly and print a nicer message. Same effect though :-)
* new-window -k.Nicholas Marriott2009-01-21
|
* Bring back -p and -l to splitw to specify height as % or nlines.Nicholas Marriott2009-01-21
|
* Allow a selection in vi keys mode...Nicholas Marriott2009-01-21
|
* Dont overload DEBUG, use FDEBUG.Nicholas Marriott2009-01-21
|
* Darwin support for automatic-rename, from joshe.Nicholas Marriott2009-01-20
|
* Whoops. Ic not It.Nicholas Marriott2009-01-20
|
* Darwin too.Nicholas Marriott2009-01-20
|
* Try to change the window title to match the command running it in. This is doneNicholas Marriott2009-01-20
| | | | | | | | | | | | | by reading argv[0] from the process group leader of the group that owns the tty (tcgetpgrp()). This can't be done portably so some OS-dependent code is introduced (ugh); OpenBSD, FreeBSD and Linux are supported at the moment. A new window flag, automatic-rename, is available: if this is set to off, the window name is not changed. Specifying a name with the new-window, new-session or rename-window commands will automatically set this flag to off for the window in question. To disable it entirely set the option to off globally (setw -g automatic-rename off).
* Die properly with warning.Nicholas Marriott2009-01-20
|
* Fix various silly problems with status line off.Nicholas Marriott2009-01-19
|
* Use reverse rather than background which doesn't show up when terminal doesn'tNicholas Marriott2009-01-19
| | | | | support colours.
* Bump protocol.Nicholas Marriott2009-01-19
|
* Pass return code from _exec; allow command sequences to work from the ↵Nicholas Marriott2009-01-19
| | | | command line.
* Start the first client with a special socketpair so it is already known to theNicholas Marriott2009-01-19
| | | | | | | | server rather than playing silly games to get them synchronised before doing anything. Change attach-session to start the server.