@@ -137,6 +137,12 @@ The snippets engine (clang_complete, ultisnips... see the snippets
137137subdirectory).
138138Default: "clang_complete"
139139
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+
140146 *clang_complete-conceal_snippets*
141147 *g:clang_conceal_snippets*
142148Note: This option is specific to clang_complete snippets engine.
@@ -272,18 +278,21 @@ Default: 0
272278 *g:clang_print_type_key*
273279Set the key used to print the type of the identifier under cursor.
274280If 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.
275282Defaut: "zp"
276283Note: You can call ClangPrintType() vim function to print this information.
277284
278285 *clang_complete-jumpto_declaration_key*
279286 *g:clang_jumpto_declaration_key*
280287Set the key used to jump to declaration.
288+ If it is empty then no shortcut will be created for this jump.
281289Default: "<C-]> "
282290Note: You could use the g:ClangGotoDeclaration() to do the same with a mapping.
283291
284292 *clang_complete-jumpto_declaration_in_preview_key*
285293 *g:clang_jumpto_declaration_in_preview_key*
286294Set 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.
287296Default: "<C-W> ]"
288297Note: You could use the g:ClangGotoDeclarationPreview() to do the same with a mapping.
289298
@@ -292,6 +301,7 @@ Note: You could use the g:ClangGotoDeclarationPreview() to do the same with a ma
292301Set the key used to jump back.
293302Note: Effectively this will be remapped to <C-O> . The default value is chosen
294303to 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.
295305Default: "<C-T> "
296306
297307 *clang_complete-make_default_keymappings*
0 commit comments