Make clangd right-clicking more prominent
I'm not sure this is a kickstart issue. But I uncommented clangd and the warning message it generates can't fit on the screen. Only through trial and error did I find out about popup menus with right click. Is there a default to get it to show up on the bottom of the screen?
Last time I encountered a similar issue, I ended up using diagflow.nvim.
If there's a built-in Neovim solution to improve the hints, it would be great to include it in the Kickstart project. That way, users can have a smoother experience out of the box and avoid running into this kind issues.
I believe this is a trade-off of the virtual text system. If you wrap virtual text it will disturb the layout of your text and result in constant shifting.
There is however a lua function to show the lines diagnostics in a float
vim.diagnostic.open_float(0, { scope = "line" })
this could be bound to a key
Yes, maybe Enter or Tab or something.
Try using <leader>e
@jxu @VlaDexa Did you try the workaround? Do we still need this PR?
forgot that <leader>e got removed from kickstart in 0.10 updates, because since 0.10 <C-W>d (and <C-W><C-D>) map to |vim.diagnostic.open_float()|.
Seems like everyone's all set here. Please re-open if that's not the case!
Is there some kind of documentation about this?
:help diagnostic ?
Ok. As someone who used to use vim with syntastic, that should be mentioned somewhere prominent.