1
0
forked from aniani/vim

patch 8.2.3706: text property highlighting is used on Tab

Problem:    Text property highlighting is used on Tab.
Solution:   Only set in_linebreak when not on a Tab. (closes #9242)
This commit is contained in:
Bram Moolenaar
2021-11-30 20:22:49 +00:00
parent eba3b7f664
commit 42eba04522
4 changed files with 31 additions and 1 deletions

View File

@@ -2046,7 +2046,7 @@ win_line(
c_extra = mb_off > 0 ? MB_FILLER_CHAR : ' ';
c_final = NUL;
if (n_extra > 0)
if (n_extra > 0 && c != TAB)
in_linebreak = TRUE;
if (VIM_ISWHITE(c))
{