comparison src/testdir/gen_opt_test.vim @ 27875:ae38d2e81fca v8.2.4463

patch 8.2.4463: completion only uses strict matching Commit: https://github.com/vim/vim/commit/38b85cb4d7216705058708bacbc25ab90cd61595 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Thu Feb 24 13:28:41 2022 +0000 patch 8.2.4463: completion only uses strict matching Problem: Completion only uses strict matching. Solution: Add the "fuzzy" item for 'wildoptions'. (Yegappan Lakshmanan, closes #9803)
author Bram Moolenaar <Bram@vim.org>
date Thu, 24 Feb 2022 14:30:05 +0100
parents 87accad5a407
children 07aea9530e05
comparison
equal deleted inserted replaced
27874:f4a227222e7a 27875:ae38d2e81fca
9 9
10 " The terminal size is restored at the end. 10 " The terminal size is restored at the end.
11 " Clear out t_WS, we don't want to resize the actual terminal. 11 " Clear out t_WS, we don't want to resize the actual terminal.
12 let script = [ 12 let script = [
13 \ '" DO NOT EDIT: Generated with gen_opt_test.vim', 13 \ '" DO NOT EDIT: Generated with gen_opt_test.vim',
14 \ '" Used by test_options.vim.',
14 \ '', 15 \ '',
15 \ 'let save_columns = &columns', 16 \ 'let save_columns = &columns',
16 \ 'let save_lines = &lines', 17 \ 'let save_lines = &lines',
17 \ 'let save_term = &term', 18 \ 'let save_term = &term',
18 \ 'set t_WS=', 19 \ 'set t_WS=',
150 \ 'viewoptions': [['', 'cursor', 'unix,slash'], ['xxx']], 151 \ 'viewoptions': [['', 'cursor', 'unix,slash'], ['xxx']],
151 \ 'viminfo': [['', '''50', '"30'], ['xxx']], 152 \ 'viminfo': [['', '''50', '"30'], ['xxx']],
152 \ 'virtualedit': [['', 'all', 'all,block'], ['xxx']], 153 \ 'virtualedit': [['', 'all', 'all,block'], ['xxx']],
153 \ 'whichwrap': [['', 'b,s', 'bs'], ['xxx']], 154 \ 'whichwrap': [['', 'b,s', 'bs'], ['xxx']],
154 \ 'wildmode': [['', 'full', 'list:full', 'full,longest'], ['xxx', 'a4', 'full,full,full,full,full']], 155 \ 'wildmode': [['', 'full', 'list:full', 'full,longest'], ['xxx', 'a4', 'full,full,full,full,full']],
155 \ 'wildoptions': [['', 'tagfile'], ['xxx']], 156 \ 'wildoptions': [['', 'tagfile', 'pum', 'fuzzy'], ['xxx']],
156 \ 'winaltkeys': [['menu', 'no'], ['', 'xxx']], 157 \ 'winaltkeys': [['menu', 'no'], ['', 'xxx']],
157 \ 158 \
158 \ 'luadll': [[], []], 159 \ 'luadll': [[], []],
159 \ 'perldll': [[], []], 160 \ 'perldll': [[], []],
160 \ 'pythondll': [[], []], 161 \ 'pythondll': [[], []],