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 +19
-3
lines changed Expand file tree Collapse file tree 2 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -158,8 +158,6 @@ let g:completion_enable_auto_hover = 0
158
158
let g:completion_enable_auto_signature = 0
159
159
```
160
160
161
-
162
-
163
161
### Enable/Disable fuzzy match
164
162
- By default fuzzy match is disable, you can enable it by
165
163
@@ -201,7 +199,7 @@ completion-nvim: `substring`, `fuzzy` or `exact`.
201
199
assign priority from high to low. For example
202
200
203
201
``` vim
204
- let g:completion_matching_strategy_list = ['exact', 'substring', fuzzy]
202
+ let g:completion_matching_strategy_list = ['exact', 'substring', ' fuzzy' ]
205
203
```
206
204
207
205
- You can also enable ignore case matching by
@@ -231,6 +229,14 @@ augroup CompleteionTriggerCharacter
231
229
autocmd BufEnter *.c,*.cpp let g:completion_trigger_character = ['.', '::']
232
230
augroup end
233
231
```
232
+ ### Trigger on delete
233
+
234
+ - ` completion-nvim ` doesn't trigger completion on delete by default because sometimes I've found it annoying. However,
235
+ you can enable it by
236
+
237
+ ``` vim
238
+ let g:completion_tigger_on_delete = 1
239
+ ```
234
240
235
241
### Timer Adjustment
236
242
Original file line number Diff line number Diff line change @@ -174,6 +174,16 @@ g:completion_trigger_character *g:completion_trigger_character*
174
174
175
175
default value: ['.']
176
176
177
+ g:completion_trigger_on_delete *g:completion_trigger_on_delete*
178
+
179
+
180
+ completion-nvim doesn't trigger completion on delete by default because
181
+ sometimes I've found it annoying. However, you can enable it by
182
+ >
183
+ let g:completion_trigger_on_delete = 1
184
+ <
185
+
186
+
177
187
g:completion_timer_cycle *g:completion_timer_cycle*
178
188
179
189
completion-nvim uses a timer to control the rate of completion. Adjust
You can’t perform that action at this time.
0 commit comments