comparison src/testdir/test_popupwin.vim @ 17626:2ae30dac20d6 v8.1.1810

patch 8.1.1810: popup_getoptions() is missing an entry for "mapping" commit https://github.com/vim/vim/commit/b8350abef0abbdca99bf08e821a8ba0ade37abed Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 4 17:59:49 2019 +0200 patch 8.1.1810: popup_getoptions() is missing an entry for "mapping" Problem: Popup_getoptions() is missing an entry for "mapping". Solution: Add the entry.
author Bram Moolenaar <Bram@vim.org>
date Sun, 04 Aug 2019 18:00:05 +0200
parents 506dd2efcbb2
children 6146b10714de
comparison
equal deleted inserted replaced
17625:a70d4629a922 17626:2ae30dac20d6
944 call assert_equal(11, res.minheight) 944 call assert_equal(11, res.minheight)
945 call assert_equal(20, res.maxwidth) 945 call assert_equal(20, res.maxwidth)
946 call assert_equal(21, res.maxheight) 946 call assert_equal(21, res.maxheight)
947 call assert_equal(100, res.zindex) 947 call assert_equal(100, res.zindex)
948 call assert_equal(1, res.fixed) 948 call assert_equal(1, res.fixed)
949 call assert_equal(1, res.mapping)
949 if has('timers') 950 if has('timers')
950 call assert_equal(5000, res.time) 951 call assert_equal(5000, res.time)
951 endif 952 endif
952 call popup_close(winid) 953 call popup_close(winid)
953 954