| Commit message (Collapse) | Author | Age |
| |
|
|
|
|
|
|
|
| |
Provide common helper function for adding windows and sessions to choose
lists and expand %% in command before using it rather than at callback
time. From Thomas Adam.
|
|
|
|
|
| |
Clean up and simplify the choose mode code, from Thomas Adam.
|
|
|
|
|
| |
Trim a blank line.
|
|
|
|
|
| |
Remove a couple of unused variables from redbrain at gcc dot gnu dot org.
|
| |
|
|
|
|
|
| |
Actually write all the data to stdout/stderr.
|
| |
|
|
|
|
|
|
|
|
|
| |
Add a skeleton mode to tmux (called "control mode") that let's tmux
commands be sent and output received on stdout. This can be used to
integrate with other terminal emulators and should allow some other
things to be made simpler later. More to come so doesn't do much yet and
deliberately not documented.
|
|
|
|
|
| |
Tidy up bell code, from Thomas Adam.
|
|
|
|
|
|
| |
Add a couple of NULL pointer checks to key binding functions, from
jspenguin on SF bug 3535531.
|
|
|
|
|
|
| |
Do not crash when the current session has no window, fixes a bug
reported by Giorgio Lando. Fix from Thomas Adam.
|
|
|
|
|
| |
Add -a for kill-session, from Thomas Adam.
|
|
|
|
|
| |
Add -a flag for detach-client, from Thomas Adam.
|
|
|
|
|
| |
Simplify references to alerts in the man page, from Thomas Adam.
|
| |
|
|
|
|
|
|
| |
Add pane title to choose-window template and use the right index for the
pane, from Romain Francoise.
|
|
|
|
|
| |
Use RB_FOREACH_SAFE as winlinks are being removed, from Chris Johnsen.
|
|
|
|
|
| |
Use session from -t for killw -a, from Chris Johnsen.
|
|
|
|
|
|
| |
Use default-shell not _PATH_BSHELL to spawn commands, pointed out by
Dennis G?nnewig and Thomas Adam.
|
|
|
|
|
| |
Trim a double space from template.
|
|
|
|
|
|
| |
Strip layout from choose-windows again (leave in list-windows),
suggested by Romain Francoise, diff from Thomas Adam.
|
|
|
|
|
| |
Fix client templates, from Romain Francoise.
|
|
|
|
|
| |
Simplify logging and just fprintf(stderr, ...) for early errors.
|
|
|
|
|
| |
Use a predefined structure for not-space cells used to set attributes.
|
| |
|
| |
|
|
|
|
|
|
| |
Store client in tty struct directly instead of using a callback function
pointer.
|
|
|
|
|
| |
Store mouse data in tty structure not on the stack.
|
|
|
|
|
|
| |
Switch all of the various choose- and list- commands over to the format
infrastructure, from Thomas Adam.
|
|
|
|
|
| |
Add a helper function to send ready message.
|
|
|
|
|
| |
Use tty_pane_full_width macro in some more places.
|
|
|
|
|
|
| |
If there are any terminals with insert mode but not ich1, they can go
through the slow path. Tidies code slightly.
|
|
|
|
|
| |
Move some common code to repeat spaces into a function.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|