This repository was archived by the owner on Oct 13, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -195,18 +195,18 @@ let g:completion_sorting = "length"
195
195
### Matching Strategy
196
196
197
197
- There are three different kind of matching technique implement in
198
- completion-nvim: ` substr ` , ` fuzzy ` or ` exact ` .
198
+ completion-nvim: ` substring ` , ` fuzzy ` or ` exact ` .
199
199
200
200
- You can specify a list of matching strategy, completion-nvim will loop through the list and
201
201
assign priority from high to low. For example
202
202
203
203
``` vim
204
- let g:completion_matching_strategy_list = ['exact', 'substr ', fuzzy]
204
+ let g:completion_matching_strategy_list = ['exact', 'substring ', fuzzy]
205
205
```
206
206
207
207
- You can also enable ignore case matching by
208
208
``` vim
209
- g:completion_matching-strategy_list = 1
209
+ g:completion_matching_ignore_case = 1
210
210
```
211
211
212
212
### Trigger Characters
Original file line number Diff line number Diff line change @@ -307,11 +307,11 @@ g:completion_auto_change_source *g:completion_auto_change_source*
307
307
g:completion_matching-strategy_list *g:completion-matching-strategy-list*
308
308
309
309
There are three different kind of matching technique implement in
310
- completion-nvim: 'substr ' , 'fuzzy' or 'exact' . You can specify a list
310
+ completion-nvim: 'substring ' , 'fuzzy' or 'exact' . You can specify a list
311
311
of matching strategy, completion-nvim will loop through the list and
312
312
assign priority from high to low. For example
313
313
>
314
- let g:completion_matching_strategy_list = ['exact', 'substr ', fuzzy]
314
+ let g:completion_matching_strategy_list = ['exact', 'substring ', fuzzy]
315
315
<
316
316
default value: ['exact' ]
317
317
You can’t perform that action at this time.
0 commit comments