Skip to content

Commit 744ec7b

Browse files
authoredJul 23, 2019
Update README.md
1 parent dab81a3 commit 744ec7b

File tree

1 file changed

+18
-7
lines changed

1 file changed

+18
-7
lines changed
 

‎README.md

+18-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# clj-async.nvim
22

3-
Provides async clojure completion through [deoplete.nvim][] or [ncm][] and
4-
[nrepl-python-client][].
3+
Provides async clojure completion for:
4+
5+
* [ncm2][]
6+
* [asyncomplete.vim][]
7+
* [coc.nvim][]
58

69
Trying to use Fireplace's omnicompletion with auto-complete is painfully
710
slow at times, making typing blocked. Using this module will be faster as
@@ -32,19 +35,16 @@ let g:deoplete#keyword_patterns.clojure = '[\w!$%&*+/:<=>?@\^_~\-\.#]*'
3235
As I improve them, they may be PR'd into deoplete.vim, but I'm not yet
3336
comfortable suggesting that change upstream.
3437

35-
### Nvim Completion Manager
38+
### Nvim Completion Manager 2
3639

37-
1. Follow the install instructions for [ncm][].
40+
1. Follow the install instructions for [ncm2][].
3841
2. Add this plugin using your favourite plugin manager,
3942
```vim
4043
Plug 'clojure-vim/async-clj-omni'
4144
```
4245

43-
That's it. It should "just" work, whether you're using Acid or Fireplace.
44-
4546
### asyncomplete.vim
4647

47-
4848
Registration:
4949

5050
```
@@ -55,6 +55,14 @@ au User asyncomplete_setup call asyncomplete#register_source({
5555
\ })
5656
```
5757

58+
### coc.nvim
59+
60+
1. Follow the install instructions for [coc.nvim][].
61+
2. Add this plugin using your favourite plugin manager,
62+
```vim
63+
Plug 'clojure-vim/async-clj-omni'
64+
```
65+
5866
## Developing
5967

6068
### Deoplete
@@ -96,3 +104,6 @@ NVIM_PYTHON_LOG_FILE=logfile NVIM_PYTHON_LOG_LEVEL=DEBUG nvim
96104
[nrepl-python-client]: https://github.com/clojure-vim/nrepl-python-client
97105
[vim-plug]: https://github.com/junegunn/vim-plug
98106
[ncm]: https://github.com/roxma/nvim-completion-manager
107+
[ncm2]: https://github.com/ncm2/ncm2
108+
[coc.nvim]: https://github.com/neoclide/coc.nvim
109+
[asyncomplete.vim]: https://github.com/prabirshrestha/asyncomplete.vim

0 commit comments

Comments
 (0)