I'd like to request that an option be exposed to disable auto-formatting of comments. When I start a Doxygen comment with /** and hit Enter a leading asterisk is automatically added to subsequent lines. However, the code base in which I work, prohibits the use of leading asterisks in Doxygen comments like this:
/**
* This function doesn't do anything, so why are you calling it?
* << bad times
* @param [in] aStartIndex The start index..duh
* @param [in] aEndIndex Not the start index :)
*/
void
MyFunction
( int aStartIndex
, int aEndIndex
);
I've asked about this in the core vscode repo, but I was told that cpptools is responsible. If I'm filing this feature request in yet again the wrong place, please let me know. Thanks!
I'd like to request that an option be exposed to disable auto-formatting of comments. When I start a Doxygen comment with
/**and hitEntera leading asterisk is automatically added to subsequent lines. However, the code base in which I work, prohibits the use of leading asterisks in Doxygen comments like this:I've asked about this in the core vscode repo, but I was told that cpptools is responsible. If I'm filing this feature request in yet again the wrong place, please let me know. Thanks!