how to get warning/error as a lsp diagnostic popup instead of another window? #3101
-
with default configuration i get warning/error in a seprate split window at bottom. however i would like to get only the error not the warning. and also them in a lsp diagnostic not in a seperate window. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You can use Further, you can set
That is not possible. The error feature in VimTeX is based on the classic/legacy quickfix feature. There are plugins that you can use that can take quickfix errors and move them to the new diagnostic stuff, but I don't use this myself and I don't know which plugins are good enough to recommend. Sorry! |
Beta Was this translation helpful? Give feedback.
Ah, no,
vim.g.vimtex_quickfix_ignore_filters
is a list of strings, not a string. So you wantAlso, note that you don't need semicolons in Lua.
Finally, I strongly recommend that you read up on options and similar in the docs, e.g.
:help vimtex_quickfix_ignore_filters
. The docs explain expected type and input for the various options and of course what they do.