summaryrefslogtreecommitdiffstats
path: root/screen-write.c
AgeCommit message (Expand)Author
2022-03-17Check scroll-on-clear for ED also.nicm
2022-03-17Add an option (scroll-on-clear) to control if tmux scrolls into historynicm
2021-10-26Do not allow inline styles to replace mode-style for the selected item,nicm
2021-10-25Add -s and -S to display-popup to set popup and border style, fromnicm
2021-10-25Instead of setting the popup default colours in the draw callback, setnicm
2021-10-20Add -T to set a popup title, from Alexis Hildebrandt in GitHub issue 2941.nicm
2021-10-14Add popup-border-lines option to set popup line style, from Alexisnicm
2021-10-13Add popup-style and popup-border-style options, from Alexis Hildebrandtnicm
2021-08-17Be more sophisticated about enabling synchronized updates when there isnicm
2021-08-12Restore saved cursor position after a ZWJ rather than recalculating it.nicm
2021-08-11Break the colour palette into a struct rather than just a single arraynicm
2021-08-06Add basic support for zero width joiners, GitHub issues 1605 and 2784.nicm
2021-08-06Another minor fix - do not draw positions that are under the popup withnicm
2021-06-10Improve logging of screen mode changes.nicm
2021-01-29Trim output overwritten by later text or clears completely rather thannicm
2021-01-27Flush pending output before entering or exiting alternate screen rathernicm
2021-01-22Revert clear changes to writing as they don't work properly, betternicm
2021-01-18There is no need to clear every line entirely before drawing to it, thisnicm
2020-12-07Do not clear the wrapped flag on linefeeds if it is already set - thisnicm
2020-11-09Remove some old debug logging.nicm
2020-07-21Fix show-buffer when run from inside tmux, GitHub issue 2314.nicm
2020-07-06Do not eliminate redundant clears, the code is wrong and doing itnicm
2020-06-18The redraw callback could be fired with a NULL pane if it updates whilenicm
2020-06-02Move the code to set up a padding cell into grid.c.nicm
2020-06-02Allow UTF-8 characters of width 0 to be stored, it is useful to be ablenicm
2020-05-27Make padding cell a valid character.nicm
2020-05-25Fix definition of padding cells so they are not extended cells.nicm
2020-05-16Add screen write flags instead of individual bits and fix line lengthnicm
2020-05-16Add a customize mode where keys and options may be browsed and changed,nicm
2020-05-16Do not hoke into struct window_pane from the tty code and instead setnicm
2020-05-16Rename and tidy some stuff in struct tty_ctx.nicm
2020-05-16Copy mode search improvements:nicm
2020-04-21Move the background colour to clear with (if any) up as well as the datanicm
2020-04-20Always start sync for output in panes that are not the active pane.nicm
2020-04-20Change how sync works to always send the end sequence after all outputnicm
2020-04-18A resize can realloc so cannot cache the value of the list pointer.nicm
2020-04-18Reset background colour on scrolled line.nicm
2020-04-18There is no point in keeping a bunch of different text buffers for eachnicm
2020-04-18Add formats for pane written/skipped bytes for debugging.nicm
2020-04-17There is no point allocating a new item and putting it on the list whennicm
2020-04-16Return to sending sync around clears.nicm
2020-04-16Do not need to set up a tty context for clearing lines now.nicm
2020-04-16Collect up line clears like text within the available data so we don'tnicm
2020-04-16Log what caused a flush for better visibility on what could be improved.nicm
2020-04-16Only start and stop sync for operations like clear and scroll wherenicm
2020-04-16Add support for the iTerm2 sychronized updates escape sequence whichnicm
2020-04-15Use mode-style for selected items, like choose modes. GitHub issue 2166.nicm
2019-11-28Parse out DA features.nicm
2019-09-24Some minor performance improvements - most notably, don't search thenicm
2019-09-24Couple of bits of minor cleanup.nicm