mirror of
https://github.com/vim/vim
synced 2025-07-16 01:01:58 +00:00
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)
This commit is contained in:
committed by
Bram Moolenaar
parent
9c9be05b17
commit
38b85cb4d7
@ -11,6 +11,7 @@ set nomore
|
||||
" Clear out t_WS, we don't want to resize the actual terminal.
|
||||
let script = [
|
||||
\ '" DO NOT EDIT: Generated with gen_opt_test.vim',
|
||||
\ '" Used by test_options.vim.',
|
||||
\ '',
|
||||
\ 'let save_columns = &columns',
|
||||
\ 'let save_lines = &lines',
|
||||
@ -152,7 +153,7 @@ let test_values = {
|
||||
\ 'virtualedit': [['', 'all', 'all,block'], ['xxx']],
|
||||
\ 'whichwrap': [['', 'b,s', 'bs'], ['xxx']],
|
||||
\ 'wildmode': [['', 'full', 'list:full', 'full,longest'], ['xxx', 'a4', 'full,full,full,full,full']],
|
||||
\ 'wildoptions': [['', 'tagfile'], ['xxx']],
|
||||
\ 'wildoptions': [['', 'tagfile', 'pum', 'fuzzy'], ['xxx']],
|
||||
\ 'winaltkeys': [['menu', 'no'], ['', 'xxx']],
|
||||
\
|
||||
\ 'luadll': [[], []],
|
||||
|
Reference in New Issue
Block a user