File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change 470
470
let g: neocomplcache_keyword_patterns ._ = ' \h\w*'
471
471
472
472
" Plugin key-mappings.
473
- imap <C-k> <Plug> (neosnippet_expand_or_jump)
474
- smap <C-k> <Plug> (neosnippet_expand_or_jump)
473
+
474
+ " These two lines conflict with the default digraph mapping of <C-K>
475
+ " If you prefer that functionality, add
476
+ " let g:spf13_no_neosnippet_expand = 1
477
+ " in your .vimrc.bundles.local file
478
+
479
+ if ! exists (' g:spf13_no_neosnippet_expand' )
480
+ imap <C-k> <Plug> (neosnippet_expand_or_jump)
481
+ smap <C-k> <Plug> (neosnippet_expand_or_jump)
482
+ endif
483
+
475
484
inoremap <expr> <C-g> neocomplcache#undo_completion()
476
485
inoremap <expr> <C-l> neocomplcache#complete_common_string()
477
486
inoremap <expr> <CR> neocomplcache#complete_common_string()
You can’t perform that action at this time.
0 commit comments