fix(column): apply numhl signs when 'signcolumn' is "no" (#26167)

This commit is contained in:
luukvbaal
2023-11-23 12:58:17 +01:00
committed by GitHub
parent 62dc1f2663
commit c126a3756a
2 changed files with 18 additions and 3 deletions

View File

@@ -713,9 +713,7 @@ void decor_redraw_signs(win_T *wp, buf_T *buf, int row, SignTextAttrs sattrs[],
int *cul_id, int *num_id)
{
MarkTreeIter itr[1];
if (!buf->b_signs
|| wp->w_minscwidth == SCL_NO
|| !marktree_itr_get_overlap(buf->b_marktree, row, 0, itr)) {
if (!buf->b_signs || !marktree_itr_get_overlap(buf->b_marktree, row, 0, itr)) {
return;
}