mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 02:20:03 +08:00
9 lines
315 B
VimL
9 lines
315 B
VimL
augroup asyncomplete_necovim
|
|
autocmd!
|
|
au User asyncomplete_setup call asyncomplete#register_source(asyncomplete#sources#necovim#get_source_options({
|
|
\ 'name': 'necovim',
|
|
\ 'whitelist': ['vim'],
|
|
\ 'completor': function('asyncomplete#sources#necovim#completor'),
|
|
\ }))
|
|
augroup END
|