| Commit message (Expand) | Author | Age | Files | Lines |
* | Send Unicode directional isolate characters around horizontal pane |  nicm | 2021-02-05 | 1 | -3/+3 |
* | There is no need to clear every line entirely before drawing to it, this |  nicm | 2021-01-18 | 1 | -2/+1 |
* | Do not force line width to grid width because it may need to be larger |  nicm | 2020-08-07 | 1 | -13/+10 |
* | Do not take the address of a potentially unaligned member. |  nicm | 2020-06-05 | 1 | -2/+5 |
* | Reset wrapped flag when clearing or moving lines, GitHub issue 2215. |  nicm | 2020-06-04 | 1 | -1/+8 |
* | Move the code to set up a padding cell into grid.c. |  nicm | 2020-06-02 | 1 | -4/+19 |
* | Allow UTF-8 characters of width 0 to be stored, it is useful to be able |  nicm | 2020-06-02 | 1 | -3/+3 |
* | Make padding cell a valid character. |  nicm | 2020-05-27 | 1 | -2/+1 |
* | Remove leftover debug logging and fix comparison. |  nicm | 2020-05-26 | 1 | -2/+1 |
* | Use the internal representation for UTF-8 keys instead of wchar_t and |  nicm | 2020-05-25 | 1 | -2/+4 |
* | Tidy up new UTF-8 code and make it more generic. |  nicm | 2020-05-25 | 1 | -4/+4 |
* | Instead of storing all UTF-8 characters in the extended cell which means |  nicm | 2020-05-25 | 1 | -22/+31 |
* | Add screen write flags instead of individual bits and fix line length |  nicm | 2020-05-16 | 1 | -2/+4 |
* | Store and restore cursor position when copy mode is resized, from |  nicm | 2020-05-16 | 1 | -2/+2 |
* | Use a grid cell not a style for the pane style. |  nicm | 2020-05-16 | 1 | -8/+17 |
* | Use grid_empty_line rather than memset when adding new lines on resize. |  nicm | 2020-04-15 | 1 | -4/+2 |
* | Some more, and use of wp->window before wp NULL check in format.c. |  nicm | 2020-04-09 | 1 | -7/+3 |
* | Add a -T flag to resize-pane to trim lines below the cursor, moving |  nicm | 2020-03-31 | 1 | -1/+14 |
* | AIX colours are always stored as 90-97, not 100-107. From Johannes |  nicm | 2020-03-21 | 1 | -10/+10 |
* | Do not set the history flag if there is no history. |  nicm | 2020-03-19 | 1 | -2/+5 |
* | Style nits in function arguments. |  nicm | 2019-12-03 | 1 | -2/+2 |
* | Some minor performance improvements - most notably, don't search the |  nicm | 2019-09-24 | 1 | -11/+13 |
* | Remove check for same size - size has already been changed so this |  nicm | 2019-08-01 | 1 | -5/+1 |
* | Fix grid clear code to correctly clear with the default background |  nicm | 2019-07-16 | 1 | -11/+19 |
* | Correctly clear underscore colour in grid_get_cell1, also fix struct |  nicm | 2019-07-06 | 1 | -3/+4 |
* | Add support for underscore colours with Setulc capability, mostly from |  nicm | 2019-06-27 | 1 | -3/+5 |
* | Add formats for word and line under the mouse and use them to add some |  nicm | 2019-05-26 | 1 | -1/+20 |
* | Add support for overline (SGR 53), from Ricardo Banffy. |  nicm | 2019-05-13 | 1 | -1/+2 |
* | Store and restore cursor across reflow by working out a position based |  nicm | 2019-04-02 | 1 | -26/+47 |
* | Restore a check to stop scrolled lines becoming larger than total lines, |  nicm | 2019-04-01 | 1 | -1/+3 |
* | Improve cursor positioning after reflow by storing the position as an |  nicm | 2019-03-20 | 1 | -37/+46 |
* | Mode init needs to be fired with the mode on the list or it will not be |  nicm | 2019-03-18 | 1 | -5/+4 |
* | Set a flag on cells are genuinely empty (cleared and never written to) |  nicm | 2019-03-12 | 1 | -30/+50 |
* | Add a "terminal" colour which can be used instead of "default" in style |  nicm | 2018-10-25 | 1 | -8/+10 |
* | Support for extended underline styles on terminals which offer them, |  nicm | 2018-10-18 | 1 | -5/+13 |
* | Helper function to shorten history. |  nicm | 2018-07-11 | 1 | -7/+12 |
* | Add function comments. |  nicm | 2018-07-11 | 1 | -1/+3 |
* | Add accessors for grid linedata member, for some future work. From Dan |  nicm | 2018-07-04 | 1 | -1/+13 |
* | Fix some compiler warnings; from Thomas Adam. |  nicm | 2018-06-11 | 1 | -3/+3 |
* | Increment the lines counter when skipping a line to avoid an infinite |  nicm | 2018-06-03 | 1 | -2/+3 |
* | Include source function name in grid_check_y logging. |  nicm | 2018-04-18 | 1 | -16/+17 |
* | Reflowing the grid in-place involved way too much memmove() for a big |  nicm | 2018-02-16 | 1 | -70/+130 |
* | Completely rewrite the reflow code to correctly handle double width |  nicm | 2017-11-15 | 1 | -160/+253 |
* | Support mouse on preview in tree mode. |  nicm | 2017-11-03 | 1 | -2/+2 |
* | Do not free more lines than are available in the history. |  nicm | 2017-09-11 | 1 | -2/+4 |
* | Previously, extended cell data was never reduced in size even when the |  nicm | 2017-09-10 | 1 | -1/+44 |
* | Instead of overloading the line clear function to mean free if |  nicm | 2017-08-30 | 1 | -29/+49 |
* | Line length and spaces to tabs. |  nicm | 2017-05-16 | 1 | -3/+2 |
* | Some other unused variables. |  nicm | 2017-05-13 | 1 | -3/+2 |
* | When expanding a line in order to clear it, we need to use the default |  nicm | 2017-05-12 | 1 | -2/+2 |