]> granicus.if.org Git - vim/commitdiff
patch 8.1.1719: popup too wide when 'showbreak' is set v8.1.1719
authorBram Moolenaar <Bram@vim.org>
Sat, 20 Jul 2019 15:46:05 +0000 (17:46 +0200)
committerBram Moolenaar <Bram@vim.org>
Sat, 20 Jul 2019 15:46:05 +0000 (17:46 +0200)
Problem:    Popup too wide when 'showbreak' is set.
Solution:   Set window width when computing line length. (closes #4701)

src/popupwin.c
src/testdir/dumps/Test_popupwin_showbreak.dump [new file with mode: 0644]
src/testdir/test_popupwin.vim
src/version.c

index d22c00dcdbec6257ead1c96cfd41baca2bc2091d..a303582be61fbd4f6dd2bf13d70b87ff0c374517 100644 (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)
        {
diff --git a/src/testdir/dumps/Test_popupwin_showbreak.dump b/src/testdir/dumps/Test_popupwin_showbreak.dump
new file mode 100644 (file)
index 0000000..e7d03d0
--- /dev/null
@@ -0,0 +1,10 @@
+>1+0&#ffffff0| @73
+|2| @73
+|3| @73
+|4| @25|╔+0#0000001#ffd7ff255|═@17|╗| +0#0000000#ffffff0@27
+|5| @25|║+0#0000001#ffd7ff255| |a| |l|o|n|g| |l|i|n|e| |h|e|r|e| |║| +0#0000000#ffffff0@27
+|6| @25|╚+0#0000001#ffd7ff255|═@17|╝| +0#0000000#ffffff0@27
+|7| @73
+|8| @73
+|9| @73
+@57|1|,|1| @10|T|o|p| 
index 11e4323b9bf29c54b5a44b05c2e0d35804717ab6..20c175aae4270e5ba83deefbac921c8a471f5396 100644 (file)
@@ -717,6 +717,27 @@ func Test_popup_without_wrap()
   call delete('XtestPopup')
 endfunc
 
+func Test_popup_with_showbreak()
+  if !CanRunVimInTerminal()
+    throw 'Skipped: cannot make screendumps'
+  endif
+  let lines =<< trim END
+        set showbreak=>>\ 
+        call setline(1, range(1, 20))
+        let winid = popup_dialog(
+          \ 'a long line here',
+          \ #{filter: 'popup_filter_yesno'})
+  END
+  call writefile(lines, 'XtestPopupShowbreak')
+  let buf = RunVimInTerminal('-S XtestPopupShowbreak', #{rows: 10})
+  call VerifyScreenDump(buf, 'Test_popupwin_showbreak', {})
+
+  " clean up
+  call term_sendkeys(buf, "y")
+  call StopVimInTerminal(buf)
+  call delete('XtestPopupShowbreak')
+endfunc
+
 func Test_popup_time()
   if !has('timers')
     throw 'Skipped: timer feature not supported'
@@ -2162,4 +2183,4 @@ func Test_previewpopup()
   call delete('XtestPreviewPopup')
 endfunc
 
-" vim: shiftwidth=2 sts=2 expandtab
+" vim: shiftwidth=2 sts=2
index e9e04465875ccb132a311d9e7c13561c2fecb841..0de98872354c2f7cea2a3cf1251ae67c8feb94ed 100644 (file)
@@ -777,6 +777,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1719,
 /**/
     1718,
 /**/