mirror of
https://github.com/prabirshrestha/asyncomplete.vim.git
synced 2025-12-14 20:35:41 +01:00
* forked off from https://github.com/maralla/completor.vim d475b42c92a000ff9eeb6b4b311eb06f457e71a3
12 lines
266 B
VimL
12 lines
266 B
VimL
if exists('g:asyncomplete_loaded')
|
|
finish
|
|
endif
|
|
let g:asyncomplete_loaded = 1
|
|
let g:asyncomplete_completion_delay = get(g:, 'asyncomplete_completion_delay', 80)
|
|
|
|
augroup asyncomplete
|
|
autocmd!
|
|
autocmd InsertEnter * call asyncomplete#enable()
|
|
augroup END
|
|
|