Skip to content

Commit

Permalink
Use sign highlighting after end of text
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbra committed Jun 25, 2023
1 parent 3ee22f3 commit b0d598a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/drawline.c
Original file line number Diff line number Diff line change
Expand Up @@ -3334,6 +3334,11 @@ win_line(
|| (wp->w_p_list &&
wp->w_lcs_chars.eol > 0)))
wlv.char_attr = wlv.line_attr;
#ifdef FEAT_SIGNS
// If this line has a sign with line highlighting reset wlv.line_attr.
if (sign_present && wlv.sattr.sat_linehl > 0 && wlv.draw_state == WL_LINE)
wlv.char_attr = wlv.sattr.sat_linehl;
#endif
# ifdef FEAT_DIFF
if (wlv.diff_hlf == HLF_TXD)
{
Expand Down

0 comments on commit b0d598a

Please sign in to comment.