https://github.com/valodim/deoplete-notmuch
Deoplete completion source for notmuch
https://github.com/valodim/deoplete-notmuch
Last synced: about 2 months ago
JSON representation
Deoplete completion source for notmuch
- Host: GitHub
- URL: https://github.com/valodim/deoplete-notmuch
- Owner: Valodim
- License: mit
- Created: 2018-09-15T22:16:29.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-11T22:18:42.000Z (over 7 years ago)
- Last Synced: 2025-01-17T00:12:44.253Z (over 1 year ago)
- Language: Python
- Size: 4.88 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# deoplete-notmuch
Deoplete-notmuch offers asynchronous completion of email addresses using `notmuch address`.
Based on @paretje's [deoplete-notmuch](https://github.com/paretje/deoplete-notmuch), which was inspired by @fszymanski and @frbor's abook sources.
## Installation
To install `deoplete-notmuch`, use your favourite plugin manager.
#### Using [vim-plug](https://github.com/junegunn/vim-plug) on neovim
```vim
Plug 'Shougo/deoplete.nvim', {'do': ':UpdateRemotePlugins'}
Plug 'Valodim/deoplete-notmuch', {'for': 'mail'}
```
## Configuration
```vim
" notmuch address command to fetch completions. in theory, any command that
" outputs addresses one per line is compatible.
" must be --format=text. note that --output=recipients is very slow!
let g:deoplete#sources#notmuch#command = ['notmuch', 'address', '--format=text', '--deduplicate=address', '*']
```