Files
vim-asyncomplete-mirror/plugin/asyncomplete.vim
Prabir Shrestha be56e330d8 initial commit
* forked off from https://github.com/maralla/completor.vim
  d475b42c92a000ff9eeb6b4b311eb06f457e71a3
2017-01-10 23:57:25 -08:00

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