Quickfix and doxygen
Talk0
1,599pages on
this wiki
this wiki
Redirected from VimTip1617
Tip 1617 Printable Monobook Previous Next
created 2009 · complexity basic · author Gdw2 · version 7.0
I often use :make to build my C++ project and then go through the compile errors and fix them. :help quickfix
This simple tip shows how you can use :make to use Quickfix with doxygen.
From the shell command line, generate a default config file:
$doxygen -g
From within Vim do the following:
:set makeprg=doxygen :make Doxyfile
Quickfix will then allow you to go through your doxygen errors as you would through gcc errors.