summaryrefslogtreecommitdiff
path: root/src/drawscreen.c
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.1488: text does not scroll when inserting above first linev8.2.1488Bram Moolenaar2020-08-191-1/+1
| | | | | Problem: Text does not scroll when inserting above first line. Solution: Adjust off-by-one error. (Ken Takata, closes #6739)
* patch 8.2.1345: Redraw error when using visual block and scrollv8.2.1345Bram Moolenaar2020-08-011-3/+6
| | | | | Problem: Redraw error when using visual block and scroll. Solution: Add check for w_topline. ( closes #6597)
* patch 8.2.0656: MS-Windows: redrawing right screen edge may not be neededv8.2.0656Bram Moolenaar2020-04-281-1/+2
| | | | | Problem: MS-Windows: redrawing right screen edge may not be needed. Solution: Check the build version. (Nobuhiro Takasaki, closes #6002)
* patch 8.2.0523: loops are repeatedv8.2.0523Bram Moolenaar2020-04-061-1/+1
| | | | | Problem: Loops are repeated. Solution: Use FOR_ALL_ macros. (Yegappan Lakshmanan, closes #5882)
* patch 8.2.0514: several global functions are used in only one filev8.2.0514Bram Moolenaar2020-04-051-1/+3
| | | | | Problem: Several global functions are used in only one file. Solution: Make the functions static. (Yegappan Lakshmanan, closes #5884)
* patch 8.2.0328: no redraw when leaving term-normal mode in popup terminalv8.2.0328Bram Moolenaar2020-02-281-17/+32
| | | | | | Problem: No redraw when leaving terminal-normal mode in a terminal popup window. Solution: Redraw the popup window. (closes #5708)
* patch 8.2.0035: saving and restoring called_emsg is clumsyv8.2.0035Bram Moolenaar2019-12-231-4/+2
| | | | | Problem: Saving and restoring called_emsg is clumsy. Solution: Count the number of error messages.
* patch 8.1.2371: FEAT_TEXT_PROP is a confusing namev8.1.2371Bram Moolenaar2019-11-301-6/+6
| | | | | Problem: FEAT_TEXT_PROP is a confusing name. Solution: Use FEAT_PROP_POPUP. (Naruhiko Nishino, closes #5291)
* patch 8.1.2294: cursor pos wrong with concealing and search causes a scrollv8.1.2294Bram Moolenaar2019-11-121-3/+41
| | | | | | | Problem: Cursor position wrong when characters are concealed and asearch causes a scroll. Solution: Fix the cursor column in a concealed line after window scroll. (closes #5215, closes #5012)
* patch 8.1.2287: using EndOfBuffer highlight in popup does not look goodv8.1.2287Bram Moolenaar2019-11-101-2/+4
| | | | | Problem: Using EndOfBuffer highlight in popup does not look good. Solution: Do not EndOfBuffer highlight. (closes #5204)
* patch 8.1.2214: too much is redrawn when 'cursorline' is setv8.1.2214Bram Moolenaar2019-10-241-1/+6
| | | | | Problem: Too much is redrawn when 'cursorline' is set. Solution: Don't do a complete redraw. (closes #5079)
* patch 8.1.2057: the screen.c file is much too bigv8.1.2057Bram Moolenaar2019-09-191-0/+3112
Problem: The screen.c file is much too big. Solution: Split it in three parts. (Yegappan Lakshmanan, closes #4943)