1
0
forked from aniani/vim

patch 9.0.0116: virtual text not displayed if 'signcolumn' is "yes"

Problem:    Virtual text not displayed if 'signcolumn' is "yes".
Solution:   Set c_extra and c_final to NUL.
This commit is contained in:
Bram Moolenaar
2022-07-30 21:33:46 +01:00
parent 6747cf1671
commit 711483cd13
5 changed files with 14 additions and 1 deletions

View File

@@ -1524,6 +1524,8 @@ win_line(
if (p != NULL)
{
p_extra = p;
c_extra = NUL;
c_final = NUL;
n_extra = (int)STRLEN(p);
extra_attr = used_attr;
n_attr = n_extra;