Fork me on GitHub
#conjure
<
2020-08-04
>
kishima15:08:55

Hi, I'm trying to use coc-conjure for autocompletion, but I only get the current buffer completion, not the REPL. Any of you had this problem? I'm using this init:

call plug#begin(stdpath('data') . '/plugged')
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'Olical/conjure', {'tag': 'v4.2.0'}

call plug#end()

let g:coc_global_extensions = ['coc-conjure']
let g:float_preview#docked = 0
let g:float_preview#max_width = 80
let g:float_preview#max_height = 40

" Colors
highlight NormalFloat ctermbg=black guibg=blue

kishima21:08:57

I did it! I only needed to add cider nrepl when setting up my repl

Olical10:08:08

Nice well done! nREPL 0.8 added some basic completion without CIDER too which I'll be hooking into eventually.