|
|
| Line 3: |
Line 3: |
| |
|previous=1616 |
|
|previous=1616 |
| |
|next=1618 |
|
|next=1618 |
| − |
|created=February 13, 2009 |
+ |
|created=2009 |
| |
|complexity=basic |
|
|complexity=basic |
| |
|author=Gdw2 |
|
|author=Gdw2 |
| Line 11: |
Line 11: |
| |
|category2= |
|
|category2= |
| |
}} |
|
}} |
| − |
I often use <tt>:make</tt> to build my C++ project and then go through the compile errors and fix them. {{help|quickfix}} |
+ |
I often use <code>:make</code> 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 <tt>:make</tt> to use Quickfix with [http://www.stack.nl/~dimitri/doxygen/ doxygen]. |
+ |
This simple tip shows how you can use <code>:make</code> to use Quickfix with [http://www.stack.nl/~dimitri/doxygen/ doxygen]. |
| |
|
|
|
| |
From the shell command line, generate a default config file: |
|
From the shell command line, generate a default config file: |
Latest revision as of 06:39, July 13, 2012
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.