@@ -63,9 +63,9 @@ g:completion_enable_auto_popup *g:completion_enable_auto_popup*
6363 this value to 0 if you don't want automatically popup window.
6464
6565 If you disable auto popup menu, you can manually trigger completion by
66- mapping keys. For example:
66+ mapping keys. For example:
6767>
68- " map <c-p> to manually trigger completion
68+ " map <c-p> to manually trigger completion
6969 imap <silent> <c-p> <Plug>(completion_trigger)
7070<
7171 Or you want to use <tab> to trigger completion without modifying the
@@ -157,7 +157,7 @@ g:completion_trigger_character *g:completion_trigger_character*
157157 default value: ['.']
158158
159159g:completion_trigger_keyword_length *g:completion_trigger_keyword_length*
160-
160+
161161 You can specify keyword length for triggering completion, if the
162162 current word is less than keyword length, completion won't be
163163 triggered.
@@ -277,7 +277,7 @@ g:completion_chain_complete_list *g:completion_chain_complete_list*
277277<
278278 You can take a step further to specify different 'scope' of different
279279 filetypes. 'scope' is literally syntax in your file. Say that you want
280- different completion lists in comments and function calls, strings,
280+ different completion lists in comments and function calls, strings,
281281 etc, you can do that easily. Here is an example
282282>
283283 let g:completion_chain_complete_list = {
@@ -346,15 +346,23 @@ g:completion_matching_strategy_list *g:completion_matching_strategy_list*
346346 default value: ['exact' ]
347347
348348g:completion_matching_ignore_case *g:completion_matching_ignore_case*
349-
349+
350350 Enable ignore case matching in all matching strategy. For example
351351>
352352 let g:completion_matching_ignore_case = 1
353353<
354354 default value: 0
355355
356+ g:completion_matching_smart_case *g:completion_matching_smart_case*
357+
358+ Enable smart case matching in all matching strategy. For example
359+ >
360+ let g:completion_matching_smart_case = 1
361+ <
362+ default value: &smartcase
363+
356364g:completion_sorting *g:completion_sorting*
357-
365+
358366 You can determine how you want to sort the completion items in popup
359367 menu. Possible values are 'alphabet' , 'length' , 'none'
360368
0 commit comments