aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Copy was using the real line length which after resize can be larger than theNicholas Marriott2009-07-12
| | | | | | | | screen width. When built with -DDEBUG, this made the grid bounds checking code kill the server. Restrict copying to the actual width. From Kalle Olavi Niemitalo, thanks.
* paste-buffer -d was not documented. From Kalle Olavi Niemitalo.Nicholas Marriott2009-07-12
|
* Redraw the status line after renaming a session (it may contain the name).Nicholas Marriott2009-07-12
|
* Don't send initialisation strings is1/2/3 (barely anything else does) and moveNicholas Marriott2009-07-12
| | | | | | smcup to the first and rmcup to the last sequences output to the terminal. This allows tmux to use the alternate screen (smcup/rmcup) when available.
* Add a default-terminal option to set the starting value of $TERM in newNicholas Marriott2009-07-12
| | | | | windows.
* Document display-time option which seems to have been missed.Nicholas Marriott2009-07-12
|
* When the terminal size is reduced horizontally, don't truncate lines to the newNicholas Marriott2009-07-12
| | | | | | width, so that if the same lines are later increased in size the content reappears.
* Stop in the right place so all the lines selected are copied. Reported by KalleNicholas Marriott2009-07-12
| | | | | Olavi Niemitalo, thanks.
* Update TODO.Nicholas Marriott2009-07-11
|
* Update TODO.Nicholas Marriott2009-07-11
|
* Fix $Id$.Nicholas Marriott2009-07-09
|
* New command, if-shell (alias if). Executes the tmux command in the secondNicholas Marriott2009-07-09
| | | | | | | | | argument if the shell command in the first succeeds, for example: if "[ -e ~/.tmux.conf.alt ]" "source .tmux.conf.alt" Written by Tiago Cunha, many thanks.
* Fix $Id$.Nicholas Marriott2009-07-09
|
* Cursor up and down should be limited by the scroll region (cuu should stop atNicholas Marriott2009-07-09
| | | | | | the scroll region top if starting from below it and cud stop at the bottom if starting from above). Fixes another vttest test.
* Don't leak FILE * on malloc failure. From ivoire at users dot sourceforge dotNicholas Marriott2009-07-09
| | | | | net.
* Change inserting and deleting lines inside the scroll region to properly clearNicholas Marriott2009-07-09
| | | | | | lines that should be inserted/deleted but not moved. Fixes problems with mutt reported by Brian Lewis, thanks.
* Tidy by removing unused argument from grid_view_{insert,delete}_line_regionNicholas Marriott2009-07-09
| | | | | functions (currently don't fully work, this is to make fix easier).
* Fix two memory leaks when assigning shell variables in configurationNicholas Marriott2009-07-09
| | | | | file/command prompt. From Tiago Cunha.
* Update TODO list.Nicholas Marriott2009-07-09
|
* Accidently deleted default-command.Nicholas Marriott2009-07-08
|
* Bring spacing into line.Nicholas Marriott2009-07-08
|
* Whoops, that shouldn't have been there.Nicholas Marriott2009-07-08
|
* Fix $Id$.Nicholas Marriott2009-07-08
|
* When reinitialising the screen, do not omit to clear the last line.Nicholas Marriott2009-07-08
|
* Don't let ambiguous commands override an exact alias match: eg if commandsNicholas Marriott2009-07-08
| | | | | | "abc-1", "abc-2", "abc-3" exist and "abc-3" has the alias "abc", "tmux abc" should execute abc-3, not complain about the command being ambiguous.
* Rename the global options variables to be shorter and to make session optionsNicholas Marriott2009-07-08
| | | | | | clear. No functional change, getting this out of the way to make later options changes easier.
* Handle empty or unset TERM correctly; also fix a fatal() message while here.Nicholas Marriott2009-07-08
|
* When sending a "protocol mismatch" error message, tell the client to exitNicholas Marriott2009-07-08
| | | | | afterwards, otherwise it hangs.
* The fix for default-path (use target session options instead of global options)Nicholas Marriott2009-07-08
| | | | | is required here as well, doh.
* Minor fix: look for default-path in the options for the specified session firstNicholas Marriott2009-07-08
| | | | | rather than just the global options. From Brandon Mercer, thanks.
* Add a section summarising how options work, make the distinction between windowNicholas Marriott2009-07-08
| | | | | | and session options clearer, and fix the incorrect synopses and descriptions of show-options and show-window-options.
* When unlocking the server, don't try to clear the prompt on clients without aNicholas Marriott2009-07-08
| | | | | | | | prompt (such as the one issuing the unlock request). This caused the server to die if the wrong password was entered when unlocking from the command line with -U (nasty).
* Sync.Nicholas Marriott2009-07-07
|
* This is not really important or major.Nicholas Marriott2009-07-06
|
* Next will be 1.0.Nicholas Marriott2009-07-06
|
* If using the default login shell (empty default-command), strip any - prefix.Nicholas Marriott2009-07-02
|
* Change default_window_name to use window_default_command if the actual cmd isNicholas Marriott2009-07-02
| | | | | empty. From Josh Elsasser.
* Fix two copy/paste bugs: forbid zero-length buffers to prevent a fatal errorNicholas Marriott2009-07-02
| | | | | | when trying to paste them, found by me, and miscalculation of the start/end causing random fatal errors when copying in copy-mode, reported by sthen.
* Update.Tiago Cunha2009-07-02
|
* Solaris has no strcasestr.Nicholas Marriott2009-07-02
|
* Don't see a reason for sys/cdefs.h here; remove it.Nicholas Marriott2009-07-01
|
* $Id$.Nicholas Marriott2009-07-01
|
* Move defines after includes to avoid multiple definition.Nicholas Marriott2009-07-01
|
* Typo: bsdpoll.h -> bsd-poll.h.Nicholas Marriott2009-07-01
|
* Change >| to rm/> as apparently Solaris /bin/sh doesn't like it.Nicholas Marriott2009-07-01
|
* Try to make a bit more sense here.Nicholas Marriott2009-07-01
|
* Comment FDEBUG and bump dist version.Nicholas Marriott2009-07-01
|
* Changes for 0.9.Nicholas Marriott2009-07-01
|
* Update with new UTF-8 environment variable information for 0.9.Nicholas Marriott2009-07-01
|
* Using -l to specify a login shell is non-POSIX and causes problems with shellsNicholas Marriott2009-07-01
| | | | | | that do not support it. Instead, set an empty default-command to invoke $SHELL with - prefixed to argv[0], and make this the default setting.