doxdocgen
doxdocgen copied to clipboard
File comment
Is your feature request related to a problem? Please describe. using vscode 1.85, C++, and document generator 1.4.0, how do I insert a "file" comment? Using /** as the trigger I get generic comment, is there a special trigger to insert doxygen file comment?
Describe the solution you'd like Something in the documentation to explain how to get file comment generated, if this is indeed possible. I've played around trying various things e.g. /** on first line in file
@stegzzz Same here: I confirm that the latest 1.4.0 doesn't insert the file comment, opening the trigger comment on line 1
I also had same issue, my env like:
- ext version: v1.4.0
- vscode ver: 1.89.1
- OS: MacOS Ventura 13.6.6
I solved this problem by adding configuration in settings.json
:
{
"doxdocgen.c.triggerSequence": "/**"
}
But I don’t think it’s elegant for users to add it manually.