mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 12:50:04 +08:00
10 lines
335 B
VimL
10 lines
335 B
VimL
augroup asyncompelet_buffer
|
|
autocmd!
|
|
au User asyncomplete_setup call asyncomplete#register_source(asyncomplete#sources#buffer#get_source_options({
|
|
\ 'name': 'B',
|
|
\ 'whitelist': ['*'],
|
|
\ 'blacklist': ['go'],
|
|
\ 'completor': function('asyncomplete#sources#buffer#completor'),
|
|
\ }))
|
|
augroup END
|