summaryrefslogtreecommitdiffstats
path: root/src/testdir
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-07-26 22:20:54 +0200
committerBram Moolenaar <Bram@vim.org>2020-07-26 22:20:54 +0200
commit6d585f4c5c8d120f768dd61bfd32f6e57ad562a7 (patch)
tree47e0cb1bbc2f7aa9b223584994afd45a5b68869d /src/testdir
parent01865ade85d2508639e24aaca5948b09fb284a82 (diff)
patch 8.2.1303: calling popup_setoptions() resets 'signcolumn'v8.2.1303
Problem: Calling popup_setoptions() resets 'signcolumn'. Solution: Only set 'signcolumn' when creating the popup. (closes #6542)
Diffstat (limited to 'src/testdir')
-rw-r--r--src/testdir/test_popupwin.vim10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/testdir/test_popupwin.vim b/src/testdir/test_popupwin.vim
index 054d479efd..beb6870b6d 100644
--- a/src/testdir/test_popupwin.vim
+++ b/src/testdir/test_popupwin.vim
@@ -3115,6 +3115,11 @@ func Test_popupmenu_info_border()
call term_sendkeys(buf, "a\<C-X>\<C-U>")
call VerifyScreenDump(buf, 'Test_popupwin_infopopup_8', {})
+ call term_sendkeys(buf, " \<Esc>")
+ call term_sendkeys(buf, ":set completepopup+=width:10\<CR>")
+ call term_sendkeys(buf, "a\<C-X>\<C-U>")
+ call VerifyScreenDump(buf, 'Test_popupwin_infopopup_9', {})
+
call term_sendkeys(buf, "\<Esc>")
call StopVimInTerminal(buf)
call delete('XtestInfoPopup')
@@ -3436,6 +3441,11 @@ func Test_popupwin_atcursor_far_right()
normal! ggg$
let winid = popup_atcursor(repeat('x', 500), #{moved: 'any', border: []})
+ " 'signcolumn' was getting reset
+ call setwinvar(winid, '&signcolumn', 'yes')
+ call popup_setoptions(winid, {'zindex': 1000})
+ call assert_equal('yes', getwinvar(winid, '&signcolumn'))
+
call popup_close(winid)
bwipe!
set signcolumn&