summaryrefslogtreecommitdiff
path: root/_config/202-async.vim
blob: aaf274187a9c51601ef69429271ae1ed1bdb09b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
if empty(globpath(&rtp, 'autoload/async/job.vim'))
  finish
endif

let g:asyncomplete_remove_duplicates = 1
let g:asyncomplete_smart_completion = 1
let g:asyncomplete_auto_popup = 2

" let g:asyncomplete_preprocessor =
"   \ [function('asyncomplete#preprocessor#ezfilter#filter')]
" 
" let g:asyncomplete#preprocessor#ezfilter#config = {}
" let g:asyncomplete#preprocessor#ezfilter#config['*'] =
"   \ {ctx, items -> filter(items, 's:fuzzy(v:val.word, ctx.base) != 0')}