Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-11-27 | Correctly aggregate together errors from nested config files (with | Nicholas Marriott | |
source-file). Fix by Thomas Adam, reported by Sam Livingstone-Gray | |||
2012-11-22 | Put helper function back, will be needed in a bit. | Nicholas Marriott | |
2012-11-22 | Instead of worrying about xterm version, send DA and read DEC service | Nicholas Marriott | |
class which is more likely to be useful. Not used for anything yet anyway. | |||
2012-11-19 | Use a utility function for common code to show errors in config file, | Nicholas Marriott | |
from Thomas Adam. | |||
2012-11-05 | Show last client activity time in default choose-client list. | Nicholas Marriott | |
2012-10-26 | Make mouse event structure clearer by defining events (up, click, drag) | Nicholas Marriott | |
and simplifying how buttons and wheels are represented, from Ailin Nemui. Should be no functional changes. | |||
2012-10-02 | Allow session tree (C-b s) to expand and collapse sessions with | Nicholas Marriott | |
left/right/space keys. From Thomas Adam. | |||
2012-09-25 | Add notification for input from a pane, from George Nachman. | Nicholas Marriott | |
2012-09-24 | Add control_write_buffer, from George Nachman. | Nicholas Marriott | |
2012-09-24 | Use pgrp of pty fd not pid of immediate child when recovering current | Nicholas Marriott | |
working directory (like current process). From Marcel Partap. | |||
2012-09-03 | When choosing a pane found by find-window, switch to that pane rather | Nicholas Marriott | |
than just the window. Also use a helper function for the inner loop. | |||
2012-09-03 | add cmd-choose-list to allow arbitrary options to be selected. From | Nicholas Marriott | |
Thomas Adam. | |||
2012-09-03 | Send notifications to control clients. Also don't redraw client when | Nicholas Marriott | |
suspended. | |||
2012-08-21 | Fix up window reference counting and don't crash if the rename timer | Nicholas Marriott | |
fires while the window is dead but still referenced. Fixes problem reported by Michael Scholz. | |||
2012-08-14 | Use a separate define for each default format template and strip clutter | Nicholas Marriott | |
from the choose-tree defaults. | |||
2012-08-11 | Instead of numbering choose mode items 0-9a-z and then nothing, number | Nicholas Marriott | |
them all and if there are more than 10 use a prompt when 0-9 is pressed. From Thomas Adam. | |||
2012-07-13 | Add a queue of notifys and a way to turn them off and on (we do not want | Nicholas Marriott | |
notifys to happen during some commands). Based on code from George Nachman. | |||
2012-07-11 | Make command exec functions return an enum rather than -1/0/1 values and | Nicholas Marriott | |
add a new value to mean "leave client running but don't attach" to fix problems with using some commands in a command sequence. Most of the work by Thomas Adam, problem reported by "jspenguin" on SF bug 3535531. | |||
2012-07-10 | xfree is not particularly helpful, remove it. From Thomas Adam. | Nicholas Marriott | |
2012-07-08 | Add choose-tree command to show windows and sessions in the same | Nicholas Marriott | |
list. Change choose-window and -session to use the same code. From Thomas Adam. | |||
2012-07-08 | Clear flags across all sessions, from Thomas Adam. | Nicholas Marriott | |
2012-06-25 | Provide common helper function for adding windows and sessions to choose | Nicholas Marriott | |
lists and expand %% in command before using it rather than at callback time. From Thomas Adam. | |||
2012-06-25 | Clean up and simplify the choose mode code, from Thomas Adam. | Nicholas Marriott | |
2012-06-18 | Add a skeleton mode to tmux (called "control mode") that let's tmux | Nicholas Marriott | |
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. | |||
2012-05-28 | Strip layout from choose-windows again (leave in list-windows), | Nicholas Marriott | |
suggested by Romain Francoise, diff from Thomas Adam. | |||
2012-05-27 | Fix client templates, from Romain Francoise. | Nicholas Marriott | |
2012-05-25 | Simplify logging and just fprintf(stderr, ...) for early errors. | Nicholas Marriott | |
2012-05-23 | Use a predefined structure for not-space cells used to set attributes. | Nicholas Marriott | |
2012-05-22 | Store client in tty struct directly instead of using a callback function | Nicholas Marriott | |
pointer. | |||
2012-05-22 | Store mouse data in tty structure not on the stack. | Nicholas Marriott | |
2012-05-22 | Switch all of the various choose- and list- commands over to the format | Nicholas Marriott | |
infrastructure, from Thomas Adam. | |||
2012-05-22 | Add a helper function to send ready message. | Nicholas Marriott | |
2012-05-22 | If there are any terminals with insert mode but not ich1, they can go | Nicholas Marriott | |
through the slow path. Tidies code slightly. | |||
2012-05-21 | Instead of passing stdin/stdout/stderr file descriptors over imsg and | Nicholas Marriott | |
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. | |||
2012-05-06 | Add a helper function to open the terminal for attach-/new-session. | Nicholas Marriott | |
2012-04-29 | Add a flag to move-window to renumber the windows in a session (closing | Nicholas Marriott | |
any gaps) and add an option to do this automatically each time a window is killed. From Thomas Adam. | |||
2012-04-25 | Add a buffer with all input from last ground state, will be used for | Nicholas Marriott | |
control mode. From George Nachman. | |||
2012-04-11 | Stop accepting new clients for 1 second on EMFILE/ENFILE. Based on | Nicholas Marriott | |
ongoing fixes to other daemons by Theo. | |||
2012-04-01 | Fix comment for mouse bits. | Nicholas Marriott | |
2012-04-01 | Add a layout history which can be stepped through with select-layout -u | Nicholas Marriott | |
and -U commands (bound to 'u' and 'U' by default). | |||
2012-03-20 | Add a simple form of output rate limiting by counting the number of | Nicholas Marriott | |
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. | |||
2012-03-17 | On xterm 271 and later, put the terminal into SCL 5 and use DECCRA for | Nicholas Marriott | |
scrolling the region in panes (if the large region check isn't hit). With help from Ailin Nemui. | |||
2012-03-17 | Add notify hooks for various events, the functions are currently empty | Nicholas Marriott | |
stubs but will be filled in for control mode later. From George Nachman. | |||
2012-03-17 | Break out termios initialization into a separate function, from George | Nicholas Marriott | |
Nachman. | |||
2012-03-15 | Send secondary DA to terminals with XT in terminfo when starting up and | Nicholas Marriott | |
parse it to work out the xterm version. | |||
2012-03-09 | Remove some bits leftover from unused backoff code. | Nicholas Marriott | |
2012-03-09 | Use a lock file and flock() to serialize server start, avoids problems | Nicholas Marriott | |
when running a bunch of tmux from cron at the same time. Based on a diff from Tim Ruehsen. | |||
2012-03-04 | Add A and I keys for vi status line editing. | Nicholas Marriott | |
2012-03-03 | Support "bracketed paste" mode. This adds a -p flag to paste-buffer - if | Nicholas Marriott | |
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. | |||
2012-03-03 | The wlmouse offset should be part of the client, not the server. From | Nicholas Marriott | |
Ailin Nemui. |