0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

patch 9.0.0664: bad redrawing with spell checking, using "C" and "$" in 'cpo'

Problem:    Bad redrawing with spell checking, using "C" and "$" in 'cpo'.
Solution:   Do not redraw the next line when "$" is in 'cpo'. (closes #11285)
This commit is contained in:
Bram Moolenaar
2022-10-05 13:29:15 +01:00
parent d195598714
commit f3ef026c98
6 changed files with 50 additions and 7 deletions

View File

@@ -1738,8 +1738,8 @@ edit_unputchar(void)
}
/*
* Called when p_dollar is set: display a '$' at the end of the changed text
* Only works when cursor is in the line that changes.
* Called when "$" is in 'cpoptions': display a '$' at the end of the changed
* text. Only works when cursor is in the line that changes.
*/
void
display_dollar(colnr_T col_arg)