-
-
Notifications
You must be signed in to change notification settings - Fork 957
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
backslash escapes shown in coc-json doHover float #752
Comments
Can't reproduce with minimal vimrc. |
Actually see it a lot |
@chemzqm In my case, vim-polyglot was the problem. NVIM v0.4.3 call plug#begin('~/.local/share/nvim/plugged')
Plug 'sheerun/vim-polyglot'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
call plug#end()
" LSPs I have. Both are broken.
let g:coc_global_extensions = ['coc-json', 'coc-omnisharp']
nnoremap <silent> K :call <SID>show_documentation()<CR>
function! s:show_documentation()
if (index(['vim','help'], &filetype) >= 0)
execute 'h '.expand('<cword>')
else
call CocAction('doHover')
endif
endfunction EDIT
|
@RedBeard0531 You can try |
Not sure if this is an issue with coc or coc-json. Not even sure if it is just with
doHover
but that is where I noticed it.The text was updated successfully, but these errors were encountered: