From e59bc078de624a5f3220bfd2713be3f8978c5672 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Fri, 29 Jul 2022 21:47:21 +0800 Subject: fix(screen): check for col instead of vcol when drawing fold (#19572) --- src/nvim/screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/nvim/screen.c b/src/nvim/screen.c index b9c38d9339..78fa10a555 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -2909,7 +2909,7 @@ static int win_line(win_T *wp, linenr_T lnum, int startrow, int endrow, bool noc if (draw_state == WL_LINE && has_fold - && vcol == 0 + && col == win_col_offset && n_extra == 0 && row == startrow) { char_attr = win_hl_attr(wp, HLF_FL); -- cgit