1
0
forked from aniani/vim

patch 9.0.0451: virtual text "above" does not work with 'nowrap'

Problem:    Virtual text "above" does not work with 'nowrap'.
Solution:   Do wrap the line after. (closes #11084)
This commit is contained in:
Bram Moolenaar
2022-09-12 17:51:07 +01:00
parent 7b2d87220c
commit c9dc03fff5
8 changed files with 50 additions and 13 deletions

View File

@@ -377,8 +377,8 @@ plines_win_nofill(
if (!wp->w_p_wrap)
lines = 1
#ifdef FEAT_PROP_POPUP
// add a line for each "below" aligned text property
+ prop_count_below(wp->w_buffer, lnum)
// add a line for each "above" and "below" aligned text property
+ prop_count_above_below(wp->w_buffer, lnum)
#endif
;
else