diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-08-18 17:58:11 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-08-18 17:58:11 +0200 |
commit | 9513d91be02f654658b8b33ff429a52ff3c4de12 (patch) | |
tree | a6032e6169ae7ae916f0ff07c4405c7adfff85bc /src/testdir/gen_opt_test.vim | |
parent | 62a0cb443c3184f24a6dac73d3505f9056cf6056 (diff) | |
download | vim-git-9513d91be02f654658b8b33ff429a52ff3c4de12.tar.gz |
patch 8.1.1883: options test failsv8.1.1883
Problem: Options test fails.
Solution: Add entry for 'completepopup'.
Diffstat (limited to 'src/testdir/gen_opt_test.vim')
-rw-r--r-- | src/testdir/gen_opt_test.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/testdir/gen_opt_test.vim b/src/testdir/gen_opt_test.vim index 0a0a16fcf..3c182ea74 100644 --- a/src/testdir/gen_opt_test.vim +++ b/src/testdir/gen_opt_test.vim @@ -78,6 +78,7 @@ let test_values = { \ 'complete': [['', 'w,b'], ['xxx']], \ 'concealcursor': [['', 'n', 'nvic'], ['xxx']], \ 'completeopt': [['', 'menu', 'menu,longest'], ['xxx', 'menu,,,longest,']], + \ 'completepopup': [['', 'height:13', 'highlight:That', 'width:10,height:234,highlight:Mine'], ['height:yes', 'width:no', 'xxx', 'xxx:99']], \ 'completeslash': [['', 'slash', 'backslash'], ['xxx']], \ 'cryptmethod': [['', 'zip'], ['xxx']], \ 'cscopequickfix': [['', 's-', 's-,c+,e0'], ['xxx', 's,g,d']], |