| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Scrolling needs to use background colour. |  nicm | 2017-05-12 | 1 | -3/+3 |
* | When we write out the grid including escape sequences, an SGR 0 needs to |  nicm | 2017-04-25 | 1 | -21/+44 |
* | Style nits and a missing cast. |  nicm | 2017-04-19 | 1 | -2/+2 |
* | Add support for the strikethrough attribute (SGR 9), using the new smxx |  nicm | 2017-03-22 | 1 | -2/+5 |
* | If moving cells outside the current used count, update it. |  nicm | 2017-03-07 | 1 | -1/+3 |
* | Minor bits: fix an array size, add comment, make grid_cell_entry static. |  nicm | 2017-02-22 | 1 | -2/+2 |
* | Collected cells may still need to be extended for RGB colours. |  nicm | 2017-02-13 | 1 | -13/+18 |
* | Collect sequences of printable ASCII characters and process them |  nicm | 2017-02-08 | 1 | -1/+31 |
* | Add a helper to store a cell, and some tidying. |  nicm | 2017-02-08 | 1 | -16/+24 |
* | Tweak how much we expand lines by. |  nicm | 2017-02-08 | 1 | -6/+7 |
* | Expand lines more aggressively to reduce rate of allocations. |  nicm | 2017-02-03 | 1 | -1/+7 |
* | Clear cell entry with grid_default_entry not grid_default_cell. |  nicm | 2016-10-18 | 1 | -2/+2 |
* | Make grid_clear_cell set up the entry properly for 256 and RGB cells. |  nicm | 2016-10-18 | 1 | -19/+41 |
* | Add support for BCE (background colour erase). This makes various escape |  nicm | 2016-10-13 | 1 | -47/+61 |
* | Add static in window-*.c and move some internal functions out of tmux.h. |  nicm | 2016-10-11 | 1 | -2/+5 |
* | Loads more static, except for cmd-*.c and window-*.c. |  nicm | 2016-10-10 | 1 | -18/+19 |
* | Remember the number of lines scrolled into the history (versus cleared |  nicm | 2016-09-02 | 1 | -1/+12 |
* | Don't update cells in each block of data read from a pane immediately, |  nicm | 2016-07-15 | 1 | -5/+20 |
* | Instead of representing colours in several different forms with various |  nicm | 2016-07-15 | 1 | -20/+33 |
* | Add RGB escape sequences for capture-pane -e. |  nicm | 2016-01-31 | 1 | -2/+14 |
* | Support for RGB colour, using the extended cell mechanism to avoid |  nicm | 2016-01-29 | 1 | -4/+9 |
* | I no longer use my SourceForge address so replace it. |  nicm | 2016-01-19 | 1 | -2/+2 |
* | Don't leak extddata, memset after freeing it, not before. From Patrick |  nicm | 2015-11-22 | 1 | -5/+2 |
* | Long overdue change to the way we store cells in the grid: now, instead |  nicm | 2015-11-13 | 1 | -46/+125 |
* | grid_put_utf8 is unused, remove it. |  nicm | 2015-11-12 | 1 | -5/+1 |
* | Free the history when it is cleared, based on a diff from Carlo Cannas. |  nicm | 2015-09-25 | 1 | -5/+17 |
* | Fix indentation of grid_string_cells_fg. |  nicm | 2015-09-02 | 1 | -24/+24 |
* | In grid_duplicate_lines, if the line is empty (cellsize == 0) then clear |  nicm | 2015-08-24 | 1 | -2/+3 |
* | Remove some stuff that accidentally ended up here from portable, and |  nicm | 2015-05-08 | 1 | -20/+11 |
* | use reallocarray instead of calloc; avoid the zero before infill |  deraadt | 2015-04-23 | 1 | -2/+2 |
* | Add xreallocarray and remove nmemb argument from xrealloc. |  nicm | 2014-10-08 | 1 | -7/+9 |
* | Use xrealloc(NULL, n, m) instead of xmalloc(n * m) to get overflow |  nicm | 2014-10-08 | 1 | -2/+3 |
* | Fix some comments (c -> colour) and join unnecessary line splits. |  nicm | 2014-09-17 | 1 | -7/+5 |
* | Various minor style and spacing nits. |  nicm | 2014-09-01 | 1 | -2/+2 |
* | Memory leak in error path and unnecessary assignment, from clang. |  nicm | 2014-04-16 | 1 | -2/+2 |
* | GRID_DEBUG is no longer needed. |  nicm | 2014-03-31 | 1 | -19/+1 |
* | Style nit - no space between function name and bracket. |  nicm | 2014-02-14 | 1 | -2/+2 |
* | Allow replacing each of the many sets of separate foo-{fg,bg,attr} |  nicm | 2014-01-28 | 1 | -2/+1 |
* | Couple of fixes from cppcheck via Tiago Cunha. |  nicm | 2014-01-15 | 1 | -2/+2 |
* | Style and comment fixes from Tiago Cunha. |  nicm | 2014-01-09 | 1 | -2/+2 |
* | Trivial style and spacing nits. |  nicm | 2013-10-10 | 1 | -5/+4 |
* | Only include actual trailing spaces not unused cells with capturep -J, |  nicm | 2013-10-10 | 1 | -2/+6 |
* | Allow lastgc to be NULL in grid_string_cells so find-window doesn't |  nicm | 2013-03-25 | 1 | -2/+2 |
* | Preserve trailing spaces with capture-pane -J, from George Nachman. |  nicm | 2013-03-25 | 1 | -4/+6 |
* | Use \\ not \ for escaping \. |  nicm | 2013-03-25 | 1 | -2/+2 |
* | Add -C and -J to capture pane to escape control sequences and to join |  nicm | 2013-03-22 | 1 | -14/+44 |
* | Clear last attributes after reset in string_cells, from George Nachman. |  nicm | 2013-03-22 | 1 | -3/+6 |
* | Add -e flag to capture-pane to include embedded ANSI SGR escape |  nicm | 2013-03-22 | 1 | -5/+188 |
* | Rework reflow code so it does not do so much allocation which should be |  nicm | 2013-03-21 | 1 | -29/+126 |
* | Automatically reflow wrapped lines when a pane is resized, requested by |  nicm | 2013-02-05 | 1 | -1/+42 |