| Commit message (Expand) | Author | Age | Files | Lines |
* | Trim output overwritten by later text or clears completely rather than |  nicm | 2021-01-29 | 1 | -168/+201 |
* | Flush pending output before entering or exiting alternate screen rather |  nicm | 2021-01-27 | 1 | -1/+5 |
* | Revert clear changes to writing as they don't work properly, better |  nicm | 2021-01-22 | 1 | -26/+7 |
* | There is no need to clear every line entirely before drawing to it, this |  nicm | 2021-01-18 | 1 | -8/+26 |
* | Do not clear the wrapped flag on linefeeds if it is already set - this |  nicm | 2020-12-07 | 1 | -3/+1 |
* | Remove some old debug logging. |  nicm | 2020-11-09 | 1 | -2/+1 |
* | Fix show-buffer when run from inside tmux, GitHub issue 2314. |  nicm | 2020-07-21 | 1 | -2/+5 |
* | Do not eliminate redundant clears, the code is wrong and doing it |  nicm | 2020-07-06 | 1 | -40/+23 |
* | The redraw callback could be fired with a NULL pane if it updates while |  nicm | 2020-06-18 | 1 | -2/+3 |
* | Move the code to set up a padding cell into grid.c. |  nicm | 2020-06-02 | 1 | -6/+2 |
* | Allow UTF-8 characters of width 0 to be stored, it is useful to be able |  nicm | 2020-06-02 | 1 | -2/+2 |
* | Make padding cell a valid character. |  nicm | 2020-05-27 | 1 | -2/+2 |
* | Fix definition of padding cells so they are not extended cells. |  nicm | 2020-05-25 | 1 | -2/+2 |
* | Add screen write flags instead of individual bits and fix line length |  nicm | 2020-05-16 | 1 | -3/+3 |
* | Add a customize mode where keys and options may be browsed and changed, |  nicm | 2020-05-16 | 1 | -2/+92 |
* | Do not hoke into struct window_pane from the tty code and instead set |  nicm | 2020-05-16 | 1 | -23/+146 |
* | Rename and tidy some stuff in struct tty_ctx. |  nicm | 2020-05-16 | 1 | -1/+4 |
* | Copy mode search improvements: |  nicm | 2020-05-16 | 1 | -38/+3 |
* | Move the background colour to clear with (if any) up as well as the data |  nicm | 2020-04-21 | 1 | -2/+3 |
* | Always start sync for output in panes that are not the active pane. |  nicm | 2020-04-20 | 1 | -2/+4 |
* | Change how sync works to always send the end sequence after all output |  nicm | 2020-04-20 | 1 | -10/+1 |
* | A resize can realloc so cannot cache the value of the list pointer. |  nicm | 2020-04-18 | 1 | -33/+37 |
* | Reset background colour on scrolled line. |  nicm | 2020-04-18 | 1 | -1/+2 |
* | There is no point in keeping a bunch of different text buffers for each |  nicm | 2020-04-18 | 1 | -22/+44 |
* | Add formats for pane written/skipped bytes for debugging. |  nicm | 2020-04-18 | 1 | -1/+5 |
* | There is no point allocating a new item and putting it on the list when |  nicm | 2020-04-17 | 1 | -20/+15 |
* | Return to sending sync around clears. |  nicm | 2020-04-16 | 1 | -2/+5 |
* | Do not need to set up a tty context for clearing lines now. |  nicm | 2020-04-16 | 1 | -9/+1 |
* | Collect up line clears like text within the available data so we don't |  nicm | 2020-04-16 | 1 | -41/+168 |
* | Log what caused a flush for better visibility on what could be improved. |  nicm | 2020-04-16 | 1 | -27/+31 |
* | Only start and stop sync for operations like clear and scroll where |  nicm | 2020-04-16 | 1 | -49/+53 |
* | Add support for the iTerm2 sychronized updates escape sequence which |  nicm | 2020-04-16 | 1 | -2/+11 |
* | Use mode-style for selected items, like choose modes. GitHub issue 2166. |  nicm | 2020-04-15 | 1 | -13/+14 |
* | Parse out DA features. |  nicm | 2019-11-28 | 1 | -2/+3 |
* | Some minor performance improvements - most notably, don't search the |  nicm | 2019-09-24 | 1 | -5/+3 |
* | Couple of bits of minor cleanup. |  nicm | 2019-09-24 | 1 | -8/+11 |
* | Add support for the SD (scroll down) escape sequence, GitHub issue 1861. |  nicm | 2019-08-05 | 1 | -1/+26 |
* | Use the clear history function for the 3J sequence rather than doing it manually. |  nicm | 2019-07-08 | 1 | -6/+2 |
* | Correctly clear underscore colour in grid_get_cell1, also fix struct |  nicm | 2019-07-06 | 1 | -2/+2 |
* | Add support for underscore colours with Setulc capability, mostly from |  nicm | 2019-06-27 | 1 | -2/+2 |
* | Allow menu items to be disabled by putting a - at the start of their |  nicm | 2019-05-28 | 1 | -5/+12 |
* | Add a function to draw a simple menu onto a screen. |  nicm | 2019-05-10 | 1 | -1/+39 |
* | Pass target client and session to load_cfg from source-file so formats |  nicm | 2019-04-18 | 1 | -2/+2 |
* | screen_write_fast_copy can no longer assume the target screen is default |  nicm | 2019-04-03 | 1 | -4/+3 |
* | Extend the #[] style syntax and use that together with previous format |  nicm | 2019-03-18 | 1 | -108/+1 |
* | Add a wrapper (struct style) around styles rather than using the |  nicm | 2019-03-14 | 1 | -9/+9 |
* | DECRC and DECSC apparently need to preserve origin mode as well, based |  nicm | 2019-03-12 | 1 | -3/+4 |
* | Fix HPA in origin mode. |  nicm | 2019-03-12 | 1 | -6/+6 |
* | Fix wrapping after origin mode change. |  nicm | 2019-03-12 | 1 | -2/+7 |
* | Add support for origin mode (DECOM, SM/RM ?6), from Marc Reisner. |  nicm | 2019-03-12 | 1 | -20/+28 |