JDOX 1.00pre1 review

Download
by rbytes.net on

JDOX is a vim plugin that generates javadoc compatible comment for c++ function definitions

License: GPL (GNU General Public License)
File size: 9K
Developer: Pawel Prokop
0 stars award from rbytes.net

JDOX is a vim plugin that generates javadoc compatible comment for c++ function definitions. Some time ago I found a similar vim plugin that generated c-style comments. I like javadoc style comments even in c++, so I decided to write my own plugin, mostly configurable - see CONFIGURATION in jdox_cpp.vim file.

It can work with definitions, function declarations, and classes. Only commenting of function definitions is currently supported. The main point that differs jdox from similar commenting plugins is that jdox supports comments between arguments, function name and return types.

Example:
/**
* Function: a_function
* @author Pawel Prokop
* @param str
* @param number
* @return unsigned int
* @version 1.0
*/
unsigned
int a_function ( char * str, /* int not_used_anymore, */ unsigned int number) {

JDOX 1.00pre1 search tags