@@ -137,6 +137,12 @@ The snippets engine (clang_complete, ultisnips... see the snippets
137
137
subdirectory).
138
138
Default: "clang_complete"
139
139
140
+ *clang_complete-snippet_jump_map*
141
+ *g:clang_complete_snippet_jump_map*
142
+ Key clang_complete snippet engine uses to jump between replaceables.
143
+ If it is empty string, then nothing is mapped.
144
+ Default: '<tab> '
145
+
140
146
*clang_complete-conceal_snippets*
141
147
*g:clang_conceal_snippets*
142
148
Note: This option is specific to clang_complete snippets engine.
@@ -272,18 +278,21 @@ Default: 0
272
278
*g:clang_print_type_key*
273
279
Set the key used to print the type of the identifier under cursor.
274
280
If cursor is on an enum, then the value of that enum is also printed.
281
+ If it is empty then no shortcut will be created to gather this info.
275
282
Defaut: "zp"
276
283
Note: You can call ClangPrintType() vim function to print this information.
277
284
278
285
*clang_complete-jumpto_declaration_key*
279
286
*g:clang_jumpto_declaration_key*
280
287
Set the key used to jump to declaration.
288
+ If it is empty then no shortcut will be created for this jump.
281
289
Default: "<C-]> "
282
290
Note: You could use the g:ClangGotoDeclaration() to do the same with a mapping.
283
291
284
292
*clang_complete-jumpto_declaration_in_preview_key*
285
293
*g:clang_jumpto_declaration_in_preview_key*
286
294
Set the key used to jump to declaration in a preview window.
295
+ If it is empty then no shortcut will be created for this jump.
287
296
Default: "<C-W> ]"
288
297
Note: You could use the g:ClangGotoDeclarationPreview() to do the same with a mapping.
289
298
@@ -292,6 +301,7 @@ Note: You could use the g:ClangGotoDeclarationPreview() to do the same with a ma
292
301
Set the key used to jump back.
293
302
Note: Effectively this will be remapped to <C-O> . The default value is chosen
294
303
to be coherent with ctags implementation.
304
+ If it is empty then nothing will be remapped to <C-O> , you can use <C-O> as it is.
295
305
Default: "<C-T> "
296
306
297
307
*clang_complete-make_default_keymappings*
0 commit comments