Easy navigation between issues across the whole project #30
Closed
wojciech-kulik
announced in
Tips & Tricks
Replies: 1 comment
-
Moved to Wiki. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The problem with LSP is that it shows only errors in open buffers. Usually, after the build fails we want to be able to navigate across the whole project even if we haven't opened the buffer yet.
Fortunately, xcodebuild.nvim solves this issue by adding all errors and warnings to the quickfix list. This way you can use two simple commands to jump across the whole project between issues:
:cn
and:cp
.Sample bindings:
Beta Was this translation helpful? Give feedback.
All reactions