Weird highlight of the "brackets" in floating window
thekaganugur opened this issue · 2 comments
thekaganugur commented
Problems summary
I'm using CoC, when I hover to get documentation via float window, the parentheses background color is weird as need in screenshots.
Expected
Proper background color for parentheses on the floating window.
Environment Information
- terminal: iTerm2 3.3.12
- vim/nvim version:NVIM v0.4.4
Minimal vim rc
call plug#begin('~/.nvim/plugged')
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'sheerun/vim-polyglot'
Plug 'mhartington/oceanic-next'
call plug#end()
set termguicolors
colorscheme OceanicNext
" Use K to show documentation in preview window.
nnoremap <silent> K :call <SID>show_documentation()<CR>
function! s:show_documentation()
if (index(['vim','help'], &filetype) >= 0)
execute 'h '.expand('<cword>')
elseif (coc#rpc#ready())
call CocActionAsync('doHover')
else
execute '!' . &keywordprg . " " . expand('<cword>')
endif
endfunction
The reproduce ways from neovim
- Install dependecys
- Write console.log() inside an JS/TS file
- How with 'K' over log
Screen shot
Related
neoclide/coc.nvim#1248
joshdick/onedark.vim#197 (comment)
scalameta/coc-metals#309
mhartington commented
I just merged a coc related PR, which I think fixes this? I don't use coc (since nvim has it's lsp built in). Can you pull the latest and test it out?
thekaganugur commented
Yes, it is fixed sorry for the really late reply. :)