Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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
```