Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/prabirshrestha/asyncomplete-file.vim

provides file autocomplete for asyncomplete.vim
https://github.com/prabirshrestha/asyncomplete-file.vim

asyncomplete code-completion neovim vim

Last synced: 21 days ago
JSON representation

provides file autocomplete for asyncomplete.vim

Awesome Lists containing this project

README

        

# asyncomplete-file.vim

Filename completion source for [asyncomplete.vim](https://github.com/prabirshrestha/asyncomplete.vim)

## Installing

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

## Register asyncomplete-file.vim

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