You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
417 B
11 lines
417 B
3 weeks ago
|
" I think, custom keybindings must be start with <leader> key
|
||
|
" to avoid overwriting default bindings. First key after <leader>
|
||
|
" must be a first letter of the called entity.
|
||
|
" For example, keybinding that calls *snippets* should starts with
|
||
|
" <leader> + s (Snippets)"
|
||
|
|
||
|
" Snippets
|
||
|
let g:UltiSnipsExpandTrigger="<leader>s"
|
||
|
let g:UltiSnipsJumpForwardTrigger="<leader>sn"
|
||
|
let g:UltiSnipsJumpBackwardTrigger="<leader>sb"
|