| 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/+6 |
| * | Instead of a buffer size limit on each pane, set a limit of 300 seconds |  nicm | 2020-06-10 | 1 | -9/+15 |
| * | Change how panes are resized so that the code is clearer and if the pane |  nicm | 2020-06-05 | 1 | -69/+57 |
| * | Add support for pausing a pane when the output buffered for a control |  nicm | 2020-06-05 | 1 | -10/+32 |
| * | Use CLOCK_MONOTONIC for timer measurement and add a timestamp to control |  nicm | 2020-06-02 | 1 | -2/+4 |
| * | Check the right thing for maximum client buffer size. |  nicm | 2020-06-01 | 1 | -5/+9 |
| * | Instead of sending all data to control mode clients as fast as possible, |  nicm | 2020-06-01 | 1 | -33/+51 |
| * | Pass the stdout file descriptor from the client as well as stdin and use |  nicm | 2020-05-26 | 1 | -11/+20 |
| * | Remove leftover call to control_free_offsets and do not use for |  nicm | 2020-05-24 | 1 | -6/+8 |
| * | Give control code its own state struct. |  nicm | 2020-05-24 | 1 | -1/+3 |
| * | Now the tty has a pointer back to the client there is no point (and a |  nicm | 2020-05-24 | 1 | -10/+7 |
| * | FocusIn keys can also update the latest client, like normal keys. |  nicm | 2020-05-22 | 1 | -2/+2 |
| * | Move client offset stuff into control.c since only control clients will |  nicm | 2020-05-22 | 1 | -59/+27 |
| * | Support code for control mode flow control: allow clients to have |  nicm | 2020-05-21 | 1 | -4/+129 |
| * | Move lazy resize from the pane to the window, there is no point in |  nicm | 2020-05-16 | 1 | -30/+34 |
| * | Separate key flags and modifiers, log key flags, make the "xterm" flag |  nicm | 2020-05-16 | 1 | -3/+3 |
| * | Rename KEYC_ESCAPE to KEYC_META. |  nicm | 2020-05-16 | 1 | -2/+2 |
| * | Add a client flag 'active-pane' which stores the active pane in the |  nicm | 2020-05-16 | 1 | -3/+90 |
| * | Expand target from client and use it to expand the prompt. |  nicm | 2020-05-16 | 1 | -5/+4 |
| * | Add a -D flag to ask tmux not to daemonize, useful both for running a |  nicm | 2020-05-16 | 1 | -3/+14 |
| * | Change message log to be per server rather than per client and include |  nicm | 2020-05-16 | 1 | -49/+2 |
| * | Change the existing client flags for control mode to apply for any |  nicm | 2020-05-16 | 1 | -1/+59 |
| * | Do not hoke into struct window_pane from the tty code and instead set |  nicm | 2020-05-16 | 1 | -12/+9 |
| * | Improve command prompt completion: |  nicm | 2020-05-16 | 1 | -5/+7 |
| * | Do not redraw or update mode if nothing has changed. |  nicm | 2020-05-16 | 1 | -3/+1 |
| * | Move terminal features into a single file. |  nicm | 2020-05-16 | 1 | -1/+3 |
| * | Turn off the block flag to reset the state or the cursor will not be |  nicm | 2020-04-21 | 1 | -16/+16 |
| * | Do not clear client pane redraw flags until the redraw actually happens. |  nicm | 2020-04-21 | 1 | -2/+2 |
| * | Change how sync works to always send the end sequence after all output |  nicm | 2020-04-20 | 1 | -2/+12 |
| * | Tidy up the terminal detection and feature code and add named sets of |  nicm | 2020-04-20 | 1 | -9/+17 |
| * | Also redraw panes which aren't pane 0. Problem reported by tb@. |  nicm | 2020-04-20 | 1 | -1/+2 |
| * | Need to check for pane redrawing even if just the window flag is set |  nicm | 2020-04-20 | 1 | -3/+9 |
| * | The PANE_REDRAW flag bit might be needed by other panes so we can't |  nicm | 2020-04-18 | 1 | -11/+36 |
| * | Bring back previons fix to only redraw panes that need it after a redraw |  nicm | 2020-04-18 | 1 | -11/+9 |
| * | Only update mode when actually going to redraw something. |  nicm | 2020-04-18 | 1 | -3/+3 |
| * | Add a flag to protect against nested syncs and add some extra logging to |  nicm | 2020-04-18 | 1 | -1/+2 |
| * | Revert previous, there is still a problem. |  nicm | 2020-04-18 | 1 | -10/+10 |
| * | When a redraw is deferred because the terminal hasn't finished reading |  nicm | 2020-04-18 | 1 | -10/+10 |
| * | Set mode properly before and after redrawing, and don't bother |  nicm | 2020-04-17 | 1 | -4/+6 |
| * | Move the UTF-8 flag to terminal flags. |  nicm | 2020-04-16 | 1 | -2/+2 |
| * | When adding a list of commands to the queue, instead of automatically |  nicm | 2020-04-13 | 1 | -2/+2 |
| * | Move cmdq_state into cmd-queue.c. |  nicm | 2020-04-13 | 1 | -2/+2 |
| * | Also move cmdq_item and cmdq_list into cmd-queue.c (this is to make its |  nicm | 2020-04-13 | 1 | -6/+5 |
| * | Some unnecessary assignments and unused variables. |  nicm | 2020-04-09 | 1 | -5/+4 |
| * | Wait until the initial command sequence is done before sending a device |  nicm | 2020-04-09 | 1 | -1/+3 |
| * | Do not ignore triple-click and send to pane. |  nicm | 2020-04-01 | 1 | -2/+1 |
| * | Add a way to mark environment variables as "hidden" so they can be used |  nicm | 2020-03-31 | 1 | -2/+3 |
| * | Add a "second click" key type which is fired for the second click of a |  nicm | 2020-03-31 | 1 | -9/+56 |
| * | Move alternate screen into the screen rather than the pane. |  nicm | 2020-03-31 | 1 | -2/+2 |
| * | Add support for overlay popup boxes to show text or output temporarily |  nicm | 2020-03-24 | 1 | -27/+51 |