Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/akaimo/asyncomplete-around.vim
Source of asyncomplete.vim which completes the words around the line.
https://github.com/akaimo/asyncomplete-around.vim
Last synced: 3 months ago
JSON representation
Source of asyncomplete.vim which completes the words around the line.
- Host: GitHub
- URL: https://github.com/akaimo/asyncomplete-around.vim
- Owner: akaimo
- License: mit
- Created: 2020-07-30T12:31:14.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-08T03:34:15.000Z (over 4 years ago)
- Last Synced: 2024-06-28T08:32:11.316Z (5 months ago)
- Language: Vim script
- Homepage:
- Size: 7.81 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# asyncomplete-around.vim
Source of [asyncomplete.vim](https://github.com/prabirshrestha/asyncomplete.vim) which completes the words around the line.## Install
```
Plug 'prabirshrestha/asyncomplete.vim'
Plug 'akaimo/asyncomplete-around.vim'
```## Registration
```
call asyncomplete#register_source(asyncomplete#sources#around#get_source_options({
\ 'name': 'around',
\ 'allowlist': ['*'],
\ 'priority': 10,
\ 'completor': function('asyncomplete#sources#around#completor'),
\ }))
```## Options
The number of lines to be covered (default: `20`)```
let g:asyncomplete_around_range = 20
```