aboutsummaryrefslogtreecommitdiff
path: root/.vim/after/plugin/deoplete.vim
diff options
context:
space:
mode:
authorGuangxiong Lin <[email protected]>2022-09-05 20:50:42 +0800
committerGuangxiong Lin <[email protected]>2022-09-05 20:50:42 +0800
commit26574d31ba44ff1c131effde07436eca3ba0e9df (patch)
treeb25bdb6f5887384ad2ff57846ff9256ac91b9908 /.vim/after/plugin/deoplete.vim
parent46e5c52a62f3c8e26430e8a9daa7c0f7770c5c95 (diff)
downloaddotfiles-26574d31ba44ff1c131effde07436eca3ba0e9df.tar.gz
dotfiles-26574d31ba44ff1c131effde07436eca3ba0e9df.tar.bz2
dotfiles-26574d31ba44ff1c131effde07436eca3ba0e9df.zip
Migrate from deoplete.vim to asyncomplete.vim
Diffstat (limited to '.vim/after/plugin/deoplete.vim')
-rw-r--r--.vim/after/plugin/deoplete.vim27
1 files changed, 0 insertions, 27 deletions
diff --git a/.vim/after/plugin/deoplete.vim b/.vim/after/plugin/deoplete.vim
deleted file mode 100644
index a422890..0000000
--- a/.vim/after/plugin/deoplete.vim
+++ /dev/null
@@ -1,27 +0,0 @@
-if has('nvim')
- finish
-endif
-
-inoremap <silent><expr><tab> pumvisible() ? "\<c-n>" : "\<tab>"
-inoremap <silent><expr><s-tab> pumvisible() ? "\<c-p>" : "\<s-tab>"
-
-let g:deoplete#enable_at_startup = 1
-
-packadd nvim-yarp
-packadd vim-hug-neovim-rpc
-packadd deoplete.nvim
-packadd deoplete-vim-lsp
-
-call deoplete#custom#option({
- \ 'smart_case': v:true,
- \ 'min_pattern_length': 1,
- \ 'yarp': v:true,
- \ })
-
-call deoplete#custom#source('ultisnips', 'rank', 1000)
-call deoplete#custom#source('lsp', 'rank', 900)
-
-function! s:my_cr_function() abort
- return deoplete#close_popup() . "\<CR>"
-endfunction
-inoremap <silent> <CR> <C-r>=<SID>my_cr_function()<CR>