aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Only exit mouse mode on scroll wheel when actually reaching the end ofNicholas Marriott2012-04-01
| | | | the history, from James Nylen.
* Only find each window once no matter how many panes, from JonathanNicholas Marriott2012-04-01
| | | | Daugherty.
* Add sys/file.h.Nicholas Marriott2012-03-24
|
* Accept an argument to show-environment to show one variable, based on aNicholas Marriott2012-03-22
| | | | diff from Kazuhiko Sakaguchi.
* Some terminals respond to secondary DA with primary (they ignore theNicholas Marriott2012-03-21
| | | | intermediate character). So ignore the possible responses to primary DA.
* Fix save-buffer usage, from Kazuhiko Sakaguchi.Nicholas Marriott2012-03-21
|
* Remove a stale comment.Nicholas Marriott2012-03-20
|
* Add -C -N -T flags to find-window to find in content, name, title. FromNicholas Marriott2012-03-20
| | | | Jonathan Daugherty.
* Check changes_timer with event_initialized before event_del.Nicholas Marriott2012-03-20
|
* 50 is a too low trigger default on larger terminals, bump to 250.Nicholas Marriott2012-03-20
|
* Add a simple form of output rate limiting by counting the number ofNicholas Marriott2012-03-20
| | | | | | | | | | | | | | | | | | certain C0 sequences (linefeeds, backspaces, carriage returns) and if it exceeds a threshold (current default 50/millisecond), start to redraw the pane every 100 milliseconds instead of making each change as it comes. Two configuration options - c0-change-trigger and c0-change-interval. This makes tmux much more responsive under very fast output (for example yes(1) or accidentally cat'ing a large file) but may not be perfect on all terminals and connections - feedback very welcome, particularly where this change has a negative rather than positive effect (making it off by default is a possibility). After much experimentation based originally on a request Robin Lee Powell (which ended with a completely different solution), this idea from discussion with Ailin Nemui.
* Move MSG_IDENTIFY to the last sent by the client, this will be needed byNicholas Marriott2012-03-19
| | | | control clients and irrelevant for others.
* On xterm 271 and later, put the terminal into SCL 5 and use DECCRA forNicholas Marriott2012-03-17
| | | | | scrolling the region in panes (if the large region check isn't hit). With help from Ailin Nemui.
* Add notify hooks for various events, the functions are currently emptyNicholas Marriott2012-03-17
| | | | stubs but will be filled in for control mode later. From George Nachman.
* $Id$ -> $OpenBSD$.Nicholas Marriott2012-03-17
|
* Use snprintf for constructing attribute string, from Tim Ruehsen.Nicholas Marriott2012-03-17
|
* Add a wrap-search option to turn off wrapping of searches in copyNicholas Marriott2012-03-17
| | | | mode. From Jacobo de Vera.
* Michael Krysiak points out that some terminals (eg mintty) have cursorNicholas Marriott2012-03-17
| | | | styles 5 and 6 too, so allow them to be set.
* Need to call recalculate_sizes() when changing window with the mouse,Nicholas Marriott2012-03-17
| | | | from marcel partap.
* Add -q option to set-option to turn off info message, from marcel partap.Nicholas Marriott2012-03-17
|
* Break out termios initialization into a separate function, from GeorgeNicholas Marriott2012-03-17
| | | | Nachman.
* Do not clear to end of line if the line is full, fixes missing lastNicholas Marriott2012-03-17
| | | | character in rightmost pane.
* Use the region lower not the pane size to work out where the bottom lineNicholas Marriott2012-03-17
| | | | is.
* Tweak last fix to actually hit the right end of pane.Nicholas Marriott2012-03-17
|
* Fix warnings. Doh.Nicholas Marriott2012-03-17
|
* Check event_initialized before event_del if event may not have been setNicholas Marriott2012-03-17
| | | | up; libevent2 complains about this. Reported by Moriyoshi Koizumi.
* Redirect libevent logging to tmux's log.Nicholas Marriott2012-03-17
|
* Revert screen-write.c r1.54 and fix the bug properly. After wrapping aNicholas Marriott2012-03-17
| | | | | line in a pane, the cursor needs to move to the next line unless it scrolled.
* Send secondary DA to terminals with XT in terminfo when starting up andNicholas Marriott2012-03-15
| | | | parse it to work out the xterm version.
* Respond to secondary DA requests.Nicholas Marriott2012-03-15
|
* Fix a warning. Doh.Nicholas Marriott2012-03-15
|
* Add a helper function for enabling an optimization to make some codeNicholas Marriott2012-03-15
| | | | clearer.
* Store context off before moving the cursor when wrapping, to fix longNicholas Marriott2012-03-14
| | | | standing bug drawing over the status line.
* Add -P/-F flags to break-pane too, from George Nachman.Nicholas Marriott2012-03-12
|
* Erm, use EL in a way that actually works...Nicholas Marriott2012-03-12
|
* Use EL to clear to end of line if possible.Nicholas Marriott2012-03-12
|
* Always remember last cursor position when moving up or down, not justNicholas Marriott2012-03-11
| | | | for if crossing zero length lines. From Itay Perl.
* Remove some bits leftover from unused backoff code.Nicholas Marriott2012-03-09
|
* Add a missing call to window_set_name, from George Nachman.Nicholas Marriott2012-03-09
|
* Use a lock file and flock() to serialize server start, avoids problemsNicholas Marriott2012-03-09
| | | | | when running a bunch of tmux from cron at the same time. Based on a diff from Tim Ruehsen.
* free -> xfree.Nicholas Marriott2012-03-04
|
* Add -F format to new-window and split-window to use with the -P flag,Nicholas Marriott2012-03-04
| | | | from George Nachman.
* Accept hex values as keys, needed for send-keys, based on a diff fromNicholas Marriott2012-03-04
| | | | George Nachman.
* Add A and I keys for vi status line editing.Nicholas Marriott2012-03-04
|
* Terminate strftime buffer properly and free format string, whoops. FromNicholas Marriott2012-03-03
| | | | Tiago Cunha.
* Support "bracketed paste" mode. This adds a -p flag to paste-buffer - ifNicholas Marriott2012-03-03
| | | | | | | this is used and the application has requested bracketed pastes, then tmux surrounds the pasted text by \033[200~ and \033[201~. Applications like vim can (apparently) use this to avoid, for example, indenting the text. From Ailin Nemui.
* The wlmouse offset should be part of the client, not the server. FromNicholas Marriott2012-03-03
| | | | Ailin Nemui.
* Add move-pane command (like join-pane but allows the same window). AlsoNicholas Marriott2012-03-03
| | | | | -b flag to join-pane and move-pane to place the pane to the left or above. From George Nachman.
* Add printf attribute to a couple of functions, from Tim Ruehsen.Nicholas Marriott2012-03-02
|
* Remove accidentally committed option.Nicholas Marriott2012-02-29
|