Vim "virtual text?!?" fix
The issue is that when there's an error in nvim, the error message is going through the screen and its imposible to read it
Solution:Jump to solution
I don't know if you can reflow the error text to line wrap or something like that. But you can bind a key to
vim.diagnostic.open_float()
to get a popup similar to vim.lsp.buf.hover()
which shows you the error in it's entirety6 Replies
is this error thingy tweaked by virtual text config or something else?
Solution
I don't know if you can reflow the error text to line wrap or something like that. But you can bind a key to
vim.diagnostic.open_float()
to get a popup similar to vim.lsp.buf.hover()
which shows you the error in it's entiretyok i tried some things and they are weird. For not i ended up with turning virtual text off. and turns out lsp zero already has binding for open_float
thanks Vincent
for now it looks like that