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
Nice well done! nREPL 0.8 added some basic completion without CIDER too which I'll be hooking into eventually.
like this
I did it! I only needed to add cider nrepl when setting up my repl