doxdocgen
doxdocgen copied to clipboard
We miss the attribute of the class
It would be very cool if this would also work for the class attributes. (Or maybe I did not fully understand how to parametrize it ;) )
Code example
class A{
/** [press enter]
int b;
}
Expected result
class A{
/**
* @brief b
*/
int b;
}
or at least the possibility to edit a string for the attribute
Actual result
class A{
/**
* @brief
*/
int b;
}
Hi @MaximilienNaveau,
yes it would be great :) Right now the extension only does functions/methods. This would all be so much easier if MS would just expose the info (they have) in their language server.
Thanks for your reactivity I am just new in VSCode but so far it is been a surprisingly good experience. Hope you can keep up the good work with this extension^^ Have a nice day.