summaryrefslogtreecommitdiffstats
path: root/grid.c
AgeCommit message (Collapse)Author
2019-04-02Store and restore cursor across reflow by working out a position basednicm
on unwrapped lines, rather than a grid offset. Fixes problems reported by Thomas Sattler and Paul de Weerd.
2019-04-02Restore a check to stop scrolled lines becoming larger than total lines,nicm
fixes a crash reported by Thomas Sattler.
2019-03-20Improve cursor positioning after reflow by storing the position as annicm
offset into the entire history before reflow and restoring it aftewards.
2019-03-18Mode init needs to be fired with the mode on the list or it will not benicm
resized correctly.
2019-03-12Set a flag on cells are genuinely empty (cleared and never written to)nicm
and use tty_clear_line (which will choose the best escape sequence) to clear any batches of cells with that flag when redrawing a line from the stored screen.
2018-10-25Add a "terminal" colour which can be used instead of "default" in stylenicm
options for the terminal default colour, bypassing any inheritance from other options. Prompted by a discussion with abieber@.
2018-10-18Support for extended underline styles on terminals which offer them,nicm
enabled by adding the Smulx capability with terminal-overrides (add something like ',vte*:Smulx=\E[4\:%p1%dm'). GitHub issue 1492.
2018-07-11Helper function to shorten history.nicm
2018-07-11Add function comments.nicm
2018-07-04Add accessors for grid linedata member, for some future work. From Dannicm
Aloni.
2018-06-11Fix some compiler warnings; from Thomas Adam.nicm
2018-06-03Increment the lines counter when skipping a line to avoid an infinitenicm
loop, and fix a check to avoid a potential out-of-bounds access. Problem reported by Yuxiang Qin and tracked down by Karl Beldan; GitHub issue 1352. Also a man page fix request by jmc@.
2018-04-18Include source function name in grid_check_y logging.nicm
2018-02-16Reflowing the grid in-place involved way too much memmove() for a bignicm
performance cost with a large history. Instead change back to using a second grid and copying modified lines over which is much faster (this doesn't revert to the old code however which didn't support UTF-8 properly). GitHub issue 1249.
2017-11-15Completely rewrite the reflow code to correctly handle double widthnicm
characters (previously they were not accounted for).
2017-11-03Support mouse on preview in tree mode.nicm
2017-09-11Do not free more lines than are available in the history.nicm
2017-09-10Previously, extended cell data was never reduced in size even when thenicm
cell was overwritten. With a large history this can be a substantial amount of memory. To reduce this, compact each extended cell list to only cells in use as it is scrolled off the visible screen into the history. From Dan Aloni in GitHub issue 1062.
2017-08-30Instead of overloading the line clear function to mean free ifnicm
background is default (8), introduce an explicit free function and use it where a free alone is needed. Likewise, use memmove directly rather than grid_move_lines where it makes sense. Based on a memory leak fix by Dan Aloni in GitHub issue 1051.
2017-05-16Line length and spaces to tabs.nicm
2017-05-13Some other unused variables.nicm
2017-05-12When expanding a line in order to clear it, we need to use the defaultnicm
background colour - there may be portions that we do not want to clear with the new background colour.
2017-05-12Scrolling needs to use background colour.nicm
2017-04-25When we write out the grid including escape sequences, an SGR 0 needs tonicm
cause the colours to be written again. Also treat colours separately from attributes so that RGB colours will work.
2017-04-19Style nits and a missing cast.nicm
2017-03-22Add support for the strikethrough attribute (SGR 9), using the new smxxnicm
terminfo capability. This means there are now nine attribute bits, so anything above 0xff uses an extended cell.
2017-03-07If moving cells outside the current used count, update it.nicm
2017-02-22Minor bits: fix an array size, add comment, make grid_cell_entry static.nicm
2017-02-13Collected cells may still need to be extended for RGB colours.nicm
2017-02-08Collect sequences of printable ASCII characters and process themnicm
together instead of handling them one by one. This is significantly faster. Sequences are terminated when we reach the end of the line, fill the internal buffer, or a different character is seen by the input parser (an escape sequence, or UTF-8). Rather than writing collected sequences out immediately, hold them until it is necessary (another screen modification, or we consume all available data). This means we can discard changes that would have no effect (for example, lines that would just be scrolled off the screen or cleared). This reduces the total amount of data we write out to the terminal - not important for fast terminals, but a big help with slow (like xterm).
2017-02-08Add a helper to store a cell, and some tidying.nicm
2017-02-08Tweak how much we expand lines by.nicm
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
sequences (notable EL and ED but also IL, DL, ICH, DCH) create blank cells using the current background colour rather than the default colour. On modern systems BCE doesn't really have many benefits, but most other terminals now support it, some (lazy) applications rely on it, and it is not hard to include now that we have pane background colours anyway. Mostly written by Sean Haugh.
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
into the history) and when resizing only use scrolled lines and not cleared lines (which are probably not intended to reappear). From Chaoren Lin.
2016-07-15Don't update cells in each block of data read from a pane immediately,nicm
instead track them as change (dirty) and update them once at the end, saves much time if repeatedly writing the same cell. Also fix comparison of cells being equal in a few places (memcmp is not enough).
2016-01-31Add RGB escape sequences for capture-pane -e.nicm
2016-01-29Support for RGB colour, using the extended cell mechanism to avoidnicm
wasting unnecessary space. The 'Tc' flag must be set in the external TERM entry (using terminal-overrides or a custom terminfo entry), if not tmux will map to the closest of the 256 or 16 colour palettes. Mostly from Suraj N Kurapati, based on a diff originally by someone else.
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
Palka.
2015-11-13Long overdue change to the way we store cells in the grid: now, insteadnicm
of storing a full grid_cell with UTF-8 data and everything, store a new type grid_cell_entry. This can either be the cell itself (for ASCII cells), or an offset into an extended array (per line) for UTF-8 data. This avoid a large (8 byte) overhead on non-UTF-8 cells (by far the majority for most users) without the complexity of the shadow array we had before. Grid memory without any UTF-8 is about half. The disadvantage that cells can no longer be modified in place and need to be copied out of the grid and back but it turned out to be lot less complicated than I expected.
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
the destination celldata pointer rather than leaving a stale copy of the source pointer (which may later be freed). Fixes a crash found by Kuang-che Wu.
2015-05-08Remove some stuff that accidentally ended up here from portable, andnicm
remove a little-used debug function.