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:
@@ -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 = ' ';
|
||||
|
Reference in New Issue
Block a user