Hi,
Is there any plugin to insert comments with doxygen tags. Say like when I place my cursor in a function definition, say
int func(int a, float b)
and then say insert doxygen comment, it replaces the whole thing with
/** * @brief * @param a * @param b * @returns */ int func(int a, float b)
Thanks
Hi,
Is there any plugin to insert comments with doxygen tags. Say like when I place my cursor in a function definition, say
int func(int a, float b)
and then say insert doxygen comment, it replaces the whole thing with
/**
* @brief
* @param a
* @param b
* @returns
*/
int func(int a, float b)
Thanks