summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/grid.c
AgeCommit message (Expand)Author
2017-05-16Line length and spaces to tabs.Nicholas Marriott
2017-05-13Some other unused variables.Nicholas Marriott
2017-05-12When expanding a line in order to clear it, we need to use the defaultNicholas Marriott
2017-05-12Scrolling needs to use background colour.Nicholas Marriott
2017-04-25When we write out the grid including escape sequences, an SGR 0 needs toNicholas Marriott
2017-04-19Style nits and a missing cast.Nicholas Marriott
2017-03-22Add support for the strikethrough attribute (SGR 9), using the new smxxNicholas Marriott
2017-03-07If moving cells outside the current used count, update it.Nicholas Marriott
2017-02-22Minor bits: fix an array size, add comment, make grid_cell_entry static.Nicholas Marriott
2017-02-13Collected cells may still need to be extended for RGB colours.Nicholas Marriott
2017-02-08Collect sequences of printable ASCII characters and process themNicholas Marriott
2017-02-08Add a helper to store a cell, and some tidying.Nicholas Marriott
2017-02-08Tweak how much we expand lines by.Nicholas Marriott
2017-02-03Expand lines more aggressively to reduce rate of allocations.Nicholas Marriott
2016-10-18Clear cell entry with grid_default_entry not grid_default_cell.Nicholas Marriott
2016-10-18Make grid_clear_cell set up the entry properly for 256 and RGB cells.Nicholas Marriott
2016-10-13Add support for BCE (background colour erase). This makes various escapeNicholas Marriott
2016-10-11Add static in window-*.c and move some internal functions out of tmux.h.Nicholas Marriott
2016-10-10Loads more static, except for cmd-*.c and window-*.c.Nicholas Marriott
2016-09-02Remember the number of lines scrolled into the history (versus clearedNicholas Marriott
2016-07-15Don't update cells in each block of data read from a pane immediately,Nicholas Marriott
2016-07-15Instead of representing colours in several different forms with variousNicholas Marriott
2016-01-31Add RGB escape sequences for capture-pane -e.Nicholas Marriott
2016-01-29Support for RGB colour, using the extended cell mechanism to avoidNicholas Marriott
2016-01-19I no longer use my SourceForge address so replace it.Nicholas Marriott
2015-11-22Don't leak extddata, memset after freeing it, not before. From PatrickNicholas Marriott
2015-11-13Long overdue change to the way we store cells in the grid: now, insteadNicholas Marriott
2015-11-12grid_put_utf8 is unused, remove it.Nicholas Marriott
2015-09-25Free the history when it is cleared, based on a diff from Carlo Cannas.Nicholas Marriott
2015-09-02Fix indentation of grid_string_cells_fg.Nicholas Marriott
2015-08-24In grid_duplicate_lines, if the line is empty (cellsize == 0) then clearNicholas Marriott
2015-05-08Remove some stuff that accidentally ended up here from portable, andNicholas Marriott
2015-04-23use reallocarray instead of calloc; avoid the zero before infillTheo de Raadt
2014-10-08Add xreallocarray and remove nmemb argument from xrealloc.Nicholas Marriott
2014-10-08Use xrealloc(NULL, n, m) instead of xmalloc(n * m) to get overflowNicholas Marriott
2014-09-17Fix some comments (c -> colour) and join unnecessary line splits.Nicholas Marriott
2014-09-01Various minor style and spacing nits.Nicholas Marriott
2014-04-16Memory leak in error path and unnecessary assignment, from clang.Nicholas Marriott
2014-03-31GRID_DEBUG is no longer needed.Nicholas Marriott
2014-02-14Style nit - no space between function name and bracket.Nicholas Marriott
2014-01-28Allow replacing each of the many sets of separate foo-{fg,bg,attr}Nicholas Marriott
2014-01-15Couple of fixes from cppcheck via Tiago Cunha.Nicholas Marriott
2014-01-09Style and comment fixes from Tiago Cunha.Nicholas Marriott
2013-10-10Trivial style and spacing nits.Nicholas Marriott
2013-10-10Only include actual trailing spaces not unused cells with capturep -J,Nicholas Marriott
2013-03-25Allow lastgc to be NULL in grid_string_cells so find-window doesn'tNicholas Marriott
2013-03-25Preserve trailing spaces with capture-pane -J, from George Nachman.Nicholas Marriott
2013-03-25Use \\ not \ for escaping \.Nicholas Marriott
2013-03-22Add -C and -J to capture pane to escape control sequences and to joinNicholas Marriott
2013-03-22Clear last attributes after reset in string_cells, from George Nachman.Nicholas Marriott