| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add a flag to make a client wait for an empty line before exiting in |  nicm | 2020-06-18 | 1 | -1/+3 |
| * | d and D keys to reset to default in customize mode. |  nicm | 2020-06-16 | 1 | -2/+6 |
| * | Add -b flags to insert a window before (like the existing -a for after) |  nicm | 2020-06-13 | 1 | -2/+2 |
| * | Add some formats for search in copy mode (search_present, search_match). |  nicm | 2020-06-11 | 1 | -1/+2 |
| * | Add a -A option to pause a pane manually. |  nicm | 2020-06-11 | 1 | -1/+2 |
| * | Instead of a buffer size limit on each pane, set a limit of 300 seconds |  nicm | 2020-06-10 | 1 | -1/+2 |
| * | Change how panes are resized so that the code is clearer and if the pane |  nicm | 2020-06-05 | 1 | -5/+3 |
| * | Fix various confusion about am vs xenl. |  nicm | 2020-06-05 | 1 | -3/+3 |
| * | Add support for pausing a pane when the output buffered for a control |  nicm | 2020-06-05 | 1 | -3/+8 |
| * | Move the code to set up a padding cell into grid.c. |  nicm | 2020-06-02 | 1 | -1/+3 |
| * | Allow UTF-8 characters of width 0 to be stored, it is useful to be able |  nicm | 2020-06-02 | 1 | -2/+2 |
| * | Use CLOCK_MONOTONIC for timer measurement and add a timestamp to control |  nicm | 2020-06-02 | 1 | -1/+2 |
| * | Change format callback to return value rather than storing it in the entry. |  nicm | 2020-06-01 | 1 | -1/+3 |
| * | Instead of sending all data to control mode clients as fast as possible, |  nicm | 2020-06-01 | 1 | -11/+16 |
| * | Pass the stdout file descriptor from the client as well as stdin and use |  nicm | 2020-05-26 | 1 | -1/+4 |
| * | Use the internal representation for UTF-8 keys instead of wchar_t and |  nicm | 2020-05-25 | 1 | -4/+1 |
| * | Tidy up new UTF-8 code and make it more generic. |  nicm | 2020-05-25 | 1 | -7/+10 |
| * | Make some data types consistent. |  nicm | 2020-05-25 | 1 | -5/+5 |
| * | Instead of storing all UTF-8 characters in the extended cell which means |  nicm | 2020-05-25 | 1 | -9/+24 |
| * | Give control code its own state struct. |  nicm | 2020-05-24 | 1 | -3/+4 |
| * | Now the tty has a pointer back to the client there is no point (and a |  nicm | 2020-05-24 | 1 | -3/+2 |
| * | Move client offset stuff into control.c since only control clients will |  nicm | 2020-05-22 | 1 | -19/+8 |
| * | Support code for control mode flow control: allow clients to have |  nicm | 2020-05-21 | 1 | -3/+35 |
| * | Move lazy resize from the pane to the window, there is no point in |  nicm | 2020-05-16 | 1 | -1/+7 |
| * | Add a terminal feature for enable/disable extended keys (supported by |  nicm | 2020-05-16 | 1 | -4/+7 |
| * | Separate key flags and modifiers, log key flags, make the "xterm" flag |  nicm | 2020-05-16 | 1 | -17/+21 |
| * | Rename KEYC_ESCAPE to KEYC_META. |  nicm | 2020-05-16 | 1 | -2/+2 |
| * | xterm-keys has been on by default for five years and all other modern |  nicm | 2020-05-16 | 1 | -7/+5 |
| * | Add an option to set the pane border lines style from a choice of single |  nicm | 2020-05-16 | 1 | -1/+12 |
| * | Add screen write flags instead of individual bits and fix line length |  nicm | 2020-05-16 | 1 | -2/+4 |
| * | Add a client flag 'active-pane' which stores the active pane in the |  nicm | 2020-05-16 | 1 | -2/+17 |
| * | Expand target from client and use it to expand the prompt. |  nicm | 2020-05-16 | 1 | -4/+5 |
| * | Move editor stuff to common code in popup.c. |  nicm | 2020-05-16 | 1 | -1/+4 |
| * | Add a -D flag to ask tmux not to daemonize, useful both for running a |  nicm | 2020-05-16 | 1 | -1/+2 |
| * | Add a customize mode where keys and options may be browsed and changed, |  nicm | 2020-05-16 | 1 | -6/+29 |
| * | Support embedded styles in the display-message message, GitHub issue |  nicm | 2020-05-16 | 1 | -2/+4 |
| * | Store and restore cursor position when copy mode is resized, from |  nicm | 2020-05-16 | 1 | -3/+2 |
| * | Change message log to be per server rather than per client and include |  nicm | 2020-05-16 | 1 | -9/+11 |
| * | Change the existing client flags for control mode to apply for any |  nicm | 2020-05-16 | 1 | -3/+5 |
| * | Add formats for after hook command arguments. |  nicm | 2020-05-16 | 1 | -1/+3 |
| * | Do not hoke into struct window_pane from the tty code and instead set |  nicm | 2020-05-16 | 1 | -18/+39 |
| * | Rename and tidy some stuff in struct tty_ctx. |  nicm | 2020-05-16 | 1 | -7/+9 |
| * | Add 'e' key in buffer mode to open the buffer in an editor. |  nicm | 2020-05-16 | 1 | -2/+5 |
| * | Add -W and -T flags to command-prompt to only complete a window and a |  nicm | 2020-05-16 | 1 | -1/+3 |
| * | Copy mode search improvements: |  nicm | 2020-05-16 | 1 | -3/+1 |
| * | Improve command prompt completion: |  nicm | 2020-05-16 | 1 | -1/+2 |
| * | Drop having a separate type for style options and make them all strings, |  nicm | 2020-05-16 | 1 | -13/+20 |
| * | Use a grid cell not a style for the pane style. |  nicm | 2020-05-16 | 1 | -5/+12 |
| * | Instead of forbidding invalid session names, sanitize them like window |  nicm | 2020-05-16 | 1 | -2/+2 |
| * | Instead of having a default set of terminals in terminal-overrides that |  nicm | 2020-05-16 | 1 | -1/+2 |