Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 539 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 539 Bytes

asyncomplete-file.vim

Filename completion source for asyncomplete.vim

Installing

Plug 'prabirshrestha/asyncomplete.vim'
Plug 'prabirshrestha/asyncomplete-file.vim'

Register asyncomplete-file.vim

au User asyncomplete_setup call asyncomplete#register_source(asyncomplete#sources#file#get_source_options({
    \ 'name': 'file',
    \ 'whitelist': ['*'],
    \ 'priority': 10,
    \ 'completor': function('asyncomplete#sources#file#completor')
    \ }))