Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/prabirshrestha/asyncomplete-file.vim
- Owner: prabirshrestha
- License: mit
- Created: 2017-04-07T05:57:43.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-02-08T12:36:59.000Z (9 months ago)
- Last Synced: 2024-10-06T15:06:45.732Z (about 1 month ago)
- Topics: asyncomplete, code-completion, neovim, vim
- Language: Vim script
- Size: 5.86 KB
- Stars: 39
- Watchers: 8
- Forks: 14
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
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')
\ }))
```