Newb can't navigate to next error #394
-
Hello, I'm trying to navigate to errors using
I'm sure I'm missing something basic, but I think I'm at the end of my vim-fu and am stuck. |
Beta Was this translation helpful? Give feedback.
Answered by
mfussenegger
Dec 20, 2022
Replies: 1 comment
-
The language server client in neovim reports diagnostics via the You can move to the next/previous using either |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
danbills
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The language server client in neovim reports diagnostics via the
vim.diagnostic
module. See:help vim.diagnostic
.You can move to the next/previous using either
:lua vim.diagnostic.goto_next()
or:lua vim.diagnostic.goto_prev()