Left extra text when confirm completion condidates
just write a simple String
and fininally I get
nvim version :NVIM v0.5.0-23-gafd576ee9
confirm config:

the problem only happend for java language server candidates, it's fine for snippet,file,around condidates.
Please provide minimal vimrc.
I create a debug config file. This is all the debug config.
if &compatible
set nocompatible
endif
set runtimepath+=~/study/git/dein.vim
let g:dein_load_state = dein#load_state("~/study/git/debug/plugins")
if g:dein_load_state
call dein#begin("~/study/git/debug/plugins")
call dein#add("~/study/git/dein.vim")
call dein#add('neoclide/coc.nvim',{'build':'./install.sh'})
endif
I just install coc.nvim with dein and install coc-java using coc.nvim. It also produce the same problem.
I thought I may find the problem. I removed my ~/.config/coc folder and just install coc-java, then everything worked fine. But after I installed coc-tabnine,the problem arose again. You may try to install coc-tabnine to reproduce it.
@beardnick You can temporarily fix this by adding
"tabnine.disable_filetypes": [
"java",
],
to your coc-config.json
Should be fixed on latest release branch of coc.nvim.