0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 8.1.1719: popup too wide when 'showbreak' is set

Problem:    Popup too wide when 'showbreak' is set.
Solution:   Set window width when computing line length. (closes #4701)
This commit is contained in:
Bram Moolenaar
2019-07-20 17:46:05 +02:00
parent cb5ff34c1b
commit 331bafd481
4 changed files with 43 additions and 3 deletions

View File

@@ -971,9 +971,16 @@ popup_adjust_position(win_T *wp)
wp->w_width = 1;
for (lnum = wp->w_topline; lnum <= wp->w_buffer->b_ml.ml_line_count; ++lnum)
{
// count Tabs for what they are worth
int len = win_linetabsize(wp, ml_get_buf(wp->w_buffer, lnum, FALSE),
int len;
int w_width = wp->w_width;
// Count Tabs for what they are worth and compute the length based on
// the maximum width (matters when 'showbreak' is set).
if (wp->w_width < maxwidth)
wp->w_width = maxwidth;
len = win_linetabsize(wp, ml_get_buf(wp->w_buffer, lnum, FALSE),
(colnr_T)MAXCOL);
wp->w_width = w_width;
if (wp->w_p_wrap)
{