| Commit message (Collapse) | Author | Age |
|
|
|
|
|
|
|
|
|
|
|
|
| |
Instead of passing stdin/stdout/stderr file descriptors over imsg and
handling them in the server, handle them in the client and pass buffers
over imsg. This is much tidier for some upcoming changes and the
performance hit isn't critical.
The tty fd is still passed to the server as before.
This bumps the tmux protocol version so new clients and old servers are
incompatible.
|
|
|
|
|
| |
Ignore line continuation when escaped as \\, from Simon Nicolussi.
|
|
|
|
|
|
| |
Use -t for move-window with -r rather than dying. Reported by Ben
Boeckel and Thomas Adam.
|
| |
|
| |
|
|
|
|
|
| |
Add a helper function to open the terminal for attach-/new-session.
|
|
|
|
|
| |
Only enter copy mode on scroll up, from Ailin Nemui.
|
|
|
|
|
|
| |
Tidy up by adding a macro for the pane being the full screen width, from
Ailin Nemui.
|
|
|
|
|
| |
Missing ()s in macros.
|
|
|
|
|
| |
Pull CRA out into a separate function and add ERA, from Ailin Nemui.
|
|
|
|
|
| |
Make unbind-key -a work with -t, based on a diff from Kazuhiko Sakaguchi.
|
| |
|
|
|
|
|
| |
Prompted by ore on #tmux.
|
|
|
|
|
| |
default-path has the same possibilities as new-window -c now.
|
|
|
|
|
|
|
| |
Add a flag to move-window to renumber the windows in a session (closing
any gaps) and add an option to do this automatically each time a window
is killed. From Thomas Adam.
|
|
|
|
|
|
| |
Use int not u_char for colours from options since they may have bit 8
set to mark them as 256-colour. Reported by Chris Johnson.
|
|
|
|
|
|
| |
Add a buffer with all input from last ground state, will be used for
control mode. From George Nachman.
|
|
|
|
|
| |
Add missing prototype.
|
|
|
|
|
| |
Use an enum for client exit reasons, from George Nachman.
|
|
|
|
|
| |
Do not return a buffer on the stack, mentioned by jsg a while ago.
|
|
|
|
|
| |
Use a helper function to fire choose callback.
|
|
|
|
|
| |
Add window-status-separator option, from Thomas Adam.
|
|
|
|
|
| |
Add -a flag to kill-window, from Thomas Adam.
|
|
|
|
|
| |
Fix printing commands with no arguments, from Benjamin Poirier.
|
|
|
|
|
|
| |
Handle partial keys properly by making sure the timer has actually
expired, fixes problems with mintty reported by Michael Simpson.
|
|
|
|
|
|
| |
Turn automatic-rename off properly if turned off by renaming a
window. Reported by Romain Francoise.
|
|
|
|
|
|
| |
Stop accepting new clients for 1 second on EMFILE/ENFILE. Based on
ongoing fixes to other daemons by Theo.
|
|
|
|
|
|
| |
Do not fire name timer when automatic-rename is off, from Tim Ruehsen a
while ago.
|
|
|
|
|
| |
Fix comment for mouse bits.
|
|
|
|
|
| |
Fix some indentation.
|
|
|
|
|
| |
Simplify mouse input function.
|
|
|
|
|
| |
Minor style nits - return ().
|
|
|
|
|
| |
Turn some errors down to info.
|
|
|
|
|
| |
Fix option name.
|
|
|
|
|
|
| |
Add a layout history which can be stepped through with select-layout -u
and -U commands (bound to 'u' and 'U' by default).
|
| |
|
|
|
|
|
| |
Add pane_current_path format, suggested by Mikolaj Kucharski.
|
|
|
|
|
|
| |
Only exit mouse mode on scroll wheel when actually reaching the end of
the history, from James Nylen.
|
|
|
|
|
|
| |
Only find each window once no matter how many panes, from Jonathan
Daugherty.
|
| |
|
|
|
|
|
| |
Add sys/file.h.
|
|
|
|
|
|
| |
Accept an argument to show-environment to show one variable, based on a
diff from Kazuhiko Sakaguchi.
|
|
|
|
|
|
| |
Some terminals respond to secondary DA with primary (they ignore the
intermediate character). So ignore the possible responses to primary DA.
|
|
|
|
|
| |
Fix save-buffer usage, from Kazuhiko Sakaguchi.
|
|
|
|
|
| |
Remove a stale comment.
|
|
|
|
|
|
| |
Add -C -N -T flags to find-window to find in content, name, title. From
Jonathan Daugherty.
|
|
|
|
|
| |
Check changes_timer with event_initialized before event_del.
|
|
|
|
|
| |
50 is a too low trigger default on larger terminals, bump to 250.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Add a simple form of output rate limiting by counting the number of
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 by
control clients and irrelevant for others.
|