comparison src/testdir/test_options.vim @ 20512:33a67d1dcaf0 v8.2.0810

patch 8.2.0810: error when appending "tagfile" to 'wildoptions' Commit: https://github.com/vim/vim/commit/2e61e2d08390623fcf933fd06646ac91f81fb772 Author: Bram Moolenaar <Bram@vim.org> Date: Fri May 22 14:10:36 2020 +0200 patch 8.2.0810: error when appending "tagfile" to 'wildoptions' Problem: Error when appending "tagfile" to 'wildoptions'. Solution: use flags P_ONECOMMA and P_NODUP. (Dmitri Vereshchagin, closes #6105)
author Bram Moolenaar <Bram@vim.org>
date Fri, 22 May 2020 14:15:03 +0200
parents 244eb8d8d100
children 68c206d3a251
comparison
equal deleted inserted replaced
20511:07f529a41696 20512:33a67d1dcaf0
56 call assert_equal("\n wildchar=<Esc>", a) 56 call assert_equal("\n wildchar=<Esc>", a)
57 set wildchar=27 57 set wildchar=27
58 let a=execute('set wildchar?') 58 let a=execute('set wildchar?')
59 call assert_equal("\n wildchar=<Esc>", a) 59 call assert_equal("\n wildchar=<Esc>", a)
60 set wildchar& 60 set wildchar&
61 endfunc
62
63 func Test_wildoptions()
64 set wildoptions=
65 set wildoptions+=tagfile
66 set wildoptions+=tagfile
67 call assert_equal('tagfile', &wildoptions)
61 endfunc 68 endfunc
62 69
63 func Test_options_command() 70 func Test_options_command()
64 let caught = 'ok' 71 let caught = 'ok'
65 try 72 try