mirror of
https://github.com/vim/vim.git
synced 2025-09-29 04:34:16 -04:00
patch 9.0.0718: extra empty line between two virtual text "below"
Problem: Extra empty line between two virtual text "below" when 'wrap' and 'number' are set. Solution: Reset "before" when there is no text in the screen line. (closes #11334)
This commit is contained in:
@@ -639,7 +639,7 @@ text_prop_position(
|
||||
|
||||
if (wrap || right || above || below || padding > 0 || n_used < *n_extra)
|
||||
{
|
||||
int col_off = win_col_off(wp) + win_col_off2(wp);
|
||||
int col_off = win_col_off(wp) - win_col_off2(wp);
|
||||
int skip_add = 0;
|
||||
|
||||
if (above)
|
||||
@@ -655,7 +655,7 @@ text_prop_position(
|
||||
if (before < 0
|
||||
|| !(right || below)
|
||||
|| (below
|
||||
? (col_with_padding == 0 || !wp->w_p_wrap)
|
||||
? (col_with_padding <= col_off || !wp->w_p_wrap)
|
||||
: (n_used < *n_extra)))
|
||||
{
|
||||
if (right && (wrap || room < PROP_TEXT_MIN_CELLS))
|
||||
|
Reference in New Issue
Block a user