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