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

Conceal feature caused the 'cursorline' highlighting to stop early.

This commit is contained in:
Bram Moolenaar
2010-08-13 15:24:39 +02:00
parent 0fcd237614
commit 2a988a162c
2 changed files with 12 additions and 4 deletions

View File

@@ -4399,7 +4399,11 @@ win_line(wp, lnum, startrow, endrow, nochange)
# ifdef FEAT_RIGHTLEFT
wp->w_p_rl ? (col >= 0) :
# endif
(col < W_WIDTH(wp))))
(col
# ifdef FEAT_CONCEAL
- boguscols
# endif
< W_WIDTH(wp))))
{
/* Highlight until the right side of the window */
c = ' ';