You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to disable 'wrap' inside the floating error window since it messes with the rendering (for example, the concealed link takes up multiple liens). This is what it looks like with 'wrap' set:
I would like some mechanism that lets me set options for the popup window's buffer. Perhaps a custom buftype for the window, or an autocmd like PrettyTSErrorWindowEnter or similar.
Also, with Neovim's builtin vim.diagnostic.open_float() you can call it twice to move the cursor inside the floating window (useful for yanking error messages for instance). It would be awesome if I could do the same with this plugin's error window.
The text was updated successfully, but these errors were encountered:
As for moving the cursor to floating window, you can use <C-w>w (:h CTRL-W_w) . Is it good enough?
That is possible but to me it makes sense to be compatible with Neovim's built-in behavior of vim.diagnostic.open_float() for consistency, since that is what this plugin is replacing 🙂
Thanks for making this awesome plugin!
I would like to disable
'wrap'
inside the floating error window since it messes with the rendering (for example, the concealed link takes up multiple liens). This is what it looks like with'wrap'
set:I would like some mechanism that lets me set options for the popup window's buffer. Perhaps a custom
buftype
for the window, or anautocmd
likePrettyTSErrorWindowEnter
or similar.Also, with Neovim's builtin
vim.diagnostic.open_float()
you can call it twice to move the cursor inside the floating window (useful for yanking error messages for instance). It would be awesome if I could do the same with this plugin's error window.The text was updated successfully, but these errors were encountered: