summaryrefslogtreecommitdiffstats
path: root/grid.c
AgeCommit message (Expand)Author
2017-02-03Expand lines more aggressively to reduce rate of allocations.nicm
2016-10-18Clear cell entry with grid_default_entry not grid_default_cell.nicm
2016-10-18Make grid_clear_cell set up the entry properly for 256 and RGB cells.nicm
2016-10-13Add support for BCE (background colour erase). This makes various escapenicm
2016-10-11Add static in window-*.c and move some internal functions out of tmux.h.nicm
2016-10-10Loads more static, except for cmd-*.c and window-*.c.nicm
2016-09-02Remember the number of lines scrolled into the history (versus clearednicm
2016-07-15Don't update cells in each block of data read from a pane immediately,nicm
2016-01-31Add RGB escape sequences for capture-pane -e.nicm
2016-01-29Support for RGB colour, using the extended cell mechanism to avoidnicm
2016-01-19I no longer use my SourceForge address so replace it.nicm
2015-11-22Don't leak extddata, memset after freeing it, not before. From Patricknicm
2015-11-13Long overdue change to the way we store cells in the grid: now, insteadnicm
2015-11-12grid_put_utf8 is unused, remove it.nicm
2015-09-25Free the history when it is cleared, based on a diff from Carlo Cannas.nicm
2015-09-02Fix indentation of grid_string_cells_fg.nicm
2015-08-24In grid_duplicate_lines, if the line is empty (cellsize == 0) then clearnicm
2015-05-08Remove some stuff that accidentally ended up here from portable, andnicm
2015-04-23use reallocarray instead of calloc; avoid the zero before infillderaadt
2014-10-08Add xreallocarray and remove nmemb argument from xrealloc.nicm
2014-10-08Use xrealloc(NULL, n, m) instead of xmalloc(n * m) to get overflownicm
2014-09-17Fix some comments (c -> colour) and join unnecessary line splits.nicm
2014-09-01Various minor style and spacing nits.nicm
2014-04-16Memory leak in error path and unnecessary assignment, from clang.nicm
2014-03-31GRID_DEBUG is no longer needed.nicm
2014-02-14Style nit - no space between function name and bracket.nicm
2014-01-28Allow replacing each of the many sets of separate foo-{fg,bg,attr}nicm
2014-01-15Couple of fixes from cppcheck via Tiago Cunha.nicm
2014-01-09Style and comment fixes from Tiago Cunha.nicm
2013-10-10Trivial style and spacing nits.nicm
2013-10-10Only include actual trailing spaces not unused cells with capturep -J,nicm
2013-03-25Allow lastgc to be NULL in grid_string_cells so find-window doesn'tNicholas Marriott
2013-03-22Add -C and -J to capture pane to escape control sequences and to joinNicholas Marriott
2013-03-21Rework reflow code so it does not do so much allocation which should beNicholas Marriott
2013-02-05Automatically reflow wrapped lines when a pane is resized, requested byNicholas Marriott
2013-01-18Rather than having two grids for each pane, one for ASCII and one forNicholas Marriott
2012-07-10xfree is not particularly helpful, remove it. From Thomas Adam.Nicholas Marriott
2012-05-23Use a predefined structure for not-space cells used to set attributes.Nicholas Marriott
2010-04-06Merge copy mode and output mode, dropping the latter. Idea and code fromNicholas Marriott
2009-12-03Massive spaces->tabs and trailing whitespace cleanup, hopefully for the lastNicholas Marriott
2009-11-18Cleanup by moving various (mostly horrible) little bits handling UTF-8 gridNicholas Marriott
2009-10-13Move lines into the history when scrolling even if the scroll region is notNicholas Marriott
2009-09-15Stick line length to what is actually used (removing an optimization thatNicholas Marriott
2009-08-21Fix grid_expand_line so it actually works when the required size is bigger thanNicholas Marriott
2009-08-20A few trivial optimisations: no need to check for zero size if callingNicholas Marriott
2009-08-10Use the right source and destination lines in grid_duplicate_lines.Nicholas Marriott
2009-08-08Change the way the grid is stored, previously it was:Nicholas Marriott
2009-07-21Remove a couple of unused functions and fix a type ("FALLTHOUGH"), found byNicholas Marriott
2009-07-16Typo in grid_duplicate_lines (sy for dy) causing it to write into the wrongNicholas Marriott
2009-07-13Support "alternate screen" mode (terminfo smcup/rmcup) typically used by fullNicholas Marriott