mirror of
https://github.com/neovim/neovim.git
synced 2025-10-08 02:46:31 +00:00
fix(column): missing redraw with virt_lines_leftcol (#34650)
Problem: Missing number column redraw with virt_lines_leftcol. Solution: Set virt_line_index to -1 when skipping a virtual line.
This commit is contained in:
@@ -1716,6 +1716,7 @@ int win_line(win_T *wp, linenr_T lnum, int startrow, int endrow, int col_rows, b
|
||||
break;
|
||||
}
|
||||
wlv.filler_todo--;
|
||||
virt_line_index = -1;
|
||||
if (wlv.filler_todo == 0 && (wp->w_botfill || !draw_text)) {
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user