https://github.com/tsuyoshicho/asyncomplete-mr.vim
mr.vim source for asyncomplete.vim plugin.
https://github.com/tsuyoshicho/asyncomplete-mr.vim
asyncomplete vim
Last synced: 8 months ago
JSON representation
mr.vim source for asyncomplete.vim plugin.
- Host: GitHub
- URL: https://github.com/tsuyoshicho/asyncomplete-mr.vim
- Owner: tsuyoshicho
- License: mit
- Created: 2022-11-28T09:26:12.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2025-09-13T02:18:08.000Z (9 months ago)
- Last Synced: 2025-09-13T04:17:48.937Z (9 months ago)
- Topics: asyncomplete, vim
- Language: Vim Script
- Homepage:
- Size: 135 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# asyncomplete-mr.vim
[](https://deepwiki.com/tsuyoshicho/asyncomplete-mr.vim)
[mr.vim](https://github.com/lambdalisue/mr.vim) source for [asyncomplete.vim](https://github.com/prabirshrestha/asyncomplete.vim) plugin.
## Example

## Settings
```vim
" mrr
autocmd User asyncomplete_setup call
\ asyncomplete#register_source(
\ asyncomplete#sources#mrr#get_source_options({
\ 'name': 'mrr',
\ 'allowlist': ['*'],
\ 'completor': function('asyncomplete#sources#mrr#completor'),
\ 'priority': 20,
\ }))
" mru
autocmd User asyncomplete_setup call
\ asyncomplete#register_source(
\ asyncomplete#sources#mru#get_source_options({
\ 'name': 'mru',
\ 'allowlist': ['*'],
\ 'completor': function('asyncomplete#sources#mru#completor'),
\ 'priority': 20,
\ }))
" mrw
autocmd User asyncomplete_setup call
\ asyncomplete#register_source(
\ asyncomplete#sources#mrw#get_source_options({
\ 'name': 'mrw',
\ 'allowlist': ['*'],
\ 'completor': function('asyncomplete#sources#mrw#completor'),
\ 'priority': 20,
\ }))
```