Skip to content

Commit

Permalink
Merge pull request #530 from yssource/3.0
Browse files Browse the repository at this point in the history
try to fix #526 issue 1, prevent "<C-k>" from invoking its self looply.
  • Loading branch information
spf13 committed Jan 16, 2014
2 parents 10b25a1 + 90f6428 commit 529565b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@
else
imap <silent><expr><C-k> neosnippet#expandable() ?
\ "\<Plug>(neosnippet_expand_or_jump)" : (pumvisible() ?
\ "\<C-e>" : "\<C-k>")
\ "\<C-e>" : "\<Plug>(neosnippet_expand_or_jump)")
smap <TAB> <Right><Plug>(neosnippet_jump_or_expand)
inoremap <expr><C-g> neocomplete#undo_completion()
Expand Down Expand Up @@ -729,7 +729,7 @@
else
imap <silent><expr><C-k> neosnippet#expandable() ?
\ "\<Plug>(neosnippet_expand_or_jump)" : (pumvisible() ?
\ "\<C-e>" : "\<C-k>")
\ "\<C-e>" : "\<Plug>(neosnippet_expand_or_jump)")
smap <TAB> <Right><Plug>(neosnippet_jump_or_expand)
inoremap <expr><C-g> neocomplcache#undo_completion()
Expand Down

0 comments on commit 529565b

Please sign in to comment.