summaryrefslogtreecommitdiffstats
path: root/screen-write.c
AgeCommit message (Expand)Author
2017-05-12ECH needs to use background colour.Nicholas Marriott
2017-05-12Need to clear tty context before using it.nicm
2017-05-11Clear to start of screen needs to use background colour.nicm
2017-04-29Fix UTF-8 combining characters in column 0, based on a diff from Keithnicm
2017-04-25Make full width panes try to play more nicely with terminal copy andnicm
2017-04-22Can't collect UTF-8 characters of more than one byte at the moment.nicm
2017-03-07Need to flush before writing out cells we are not collecting, also addnicm
2017-03-06When redrawing a combined UTF-8 characters in its existing position,nicm
2017-02-21Scrolling at least needs to be flushed before sending EL to the terminalnicm
2017-02-16Handle insert cells when cursor at edge of screen correctly, and do anicm
2017-02-09Combining characters need a full flush.nicm
2017-02-09When an ordinary (not collected) cell is received, we need to flush anynicm
2017-02-08Add support for scroll up escape sequence (CSI S) and use it whennicm
2017-02-08Collect sequences of printable ASCII characters and process themnicm
2017-02-08Some other tidying bits.nicm
2017-02-08Trying to avoid the occasional newline by saving the last cell on screennicm
2017-02-06Add BCE for clear to start of screen, which was somehow missed.nicm
2017-02-06Only redraw the modified character when adding combining characters, notnicm
2017-01-12Fix setting the palette of aixterm colours (90-97).nicm
2017-01-05Highlight all occurrences of search string after searching in copy mode.nicm
2016-12-09Spacing nits.nicm
2016-10-18Zero dirty count after flushing.nicm
2016-10-13Add support for BCE (background colour erase). This makes various escapenicm
2016-10-12Fix a couple of problems with insert mode: flush dirty cells before wenicm
2016-10-12Redraw selection in tty_draw_line, so it appears when redrawing wholenicm
2016-10-05screen_write_copy tried to be clever and clear the line if it reachednicm
2016-10-05Wrap some long lines in screen-write.c.nicm
2016-09-29Check padding when writing any character with width > 1, in case theynicm
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-06-06Cache selected state so that cells going from selected to unselected are notnicm
2016-05-30Do not draw character to screen if it has not changed, and do not savenicm
2016-05-27Padding cell is always the same so use a static.nicm
2016-05-27Break the save-last-cell code into a separate function (so it can benicm
2016-04-29Make the grid_cell passed into screen_write_* const.nicm
2016-01-31Clear RGB flags during selection.nicm
2016-01-19I no longer use my SourceForge address so replace it.nicm
2015-12-11Style nits and line wrapping of function declarations.nicm
2015-11-23Partly revert previous, it is harmless to keep support for UTF-8 mousenicm
2015-11-23Remove support for the UTF-8 mouse extension. This was a briefly used,nicm
2015-11-18Use __unused rather than rolling our own.nicm
2015-11-14All these return values from utf8_* are confusing, use an enum.nicm
2015-11-14Be more strict about invalid UTF-8.nicm
2015-11-13Long overdue change to the way we store cells in the grid: now, insteadnicm
2015-11-12Rename overly-long utf8data to ud throughout.nicm
2015-11-12Nuke the utf8 and status-utf8 options and make tmux only a UTF-8nicm
2015-09-14Remove some extra blank lines.nicm
2015-07-13Revert to marking lines as wrapped on newlines, fixes problems withnicm
2014-11-08Two improvements to reflow from Balazs Kezes:nicm
2014-10-20Better format for printf format attributes.nicm