Feature Request: Auto-generate Doxygen-style Code Comments Description #39916
achieve-dream1221
started this conversation in
Feature Requests
Replies: 1 comment
-
|
The temporary solution is to create a global snippet. {
"Doxygen": {
"body": [
"/**",
" * @brief ${1:Brief description of function}",
" * ",
" * ${2:Detailed description of function behavior and purpose}",
" * ",
" * @param ${3:parameter_name} ${4:Parameter description}",
" * @return ${5:Return value description}",
" */",
"$0"
],
"description": "Generate Doxygen-style function documentation"
}
}
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Currently, when writing C++ code, I need to manually write Doxygen-style documentation comments for functions, classes, and methods. This is time-consuming and repetitive, especially when dealing with functions that have multiple parameters.
Users should be able to generate Doxygen comment templates by:
feature.mp4
Beta Was this translation helpful? Give feedback.
All reactions