Don't enable neocomplete keyboard bindings if neovim is being used

This commit is contained in:
Kevin MacMartin 2016-03-24 17:04:41 -04:00
parent f9526ca41e
commit 820bb5004a

View file

@ -704,6 +704,7 @@
"} "}
"AUTOCOMPLETION:{ "AUTOCOMPLETION:{
if !has('nvim')
"neocomplete close popup and save indent "neocomplete close popup and save indent
inoremap <silent> <CR> <C-r>=<SID>neocache_cr()<CR> inoremap <silent> <CR> <C-r>=<SID>neocache_cr()<CR>
function! s:neocache_cr() function! s:neocache_cr()
@ -718,6 +719,7 @@
"neocomplete undo completion "neocomplete undo completion
inoremap <expr><C-u> neocomplete#undo_completion() inoremap <expr><C-u> neocomplete#undo_completion()
endif
"} "}
"FORMATTING:{ "FORMATTING:{