You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to get /** \brief XXXXXX / in only one line and the cursor is in the correct position i.e. after the comment is generated, the cursor is after brief i.e. /* \brief (the cursor should be here) */ .
but the reality is (the cursor is here)/** \brief */
Is it possible to get /** \brief XXXXXX / in only one line and the cursor is in the correct position i.e. after the comment is generated, the cursor is after brief i.e. /* \brief (the cursor should be here) */ .
but the reality is (the cursor is here)/** \brief */
VScode setting is
"doxdocgen.generic.authorTag": "",
"doxdocgen.generic.briefTemplate": "/** \brief {text} */",
"doxdocgen.c.firstLine": "",
"doxdocgen.c.commentPrefix": "",
"doxdocgen.generic.paramTemplate": "",
"doxdocgen.generic.returnTemplate": "",
"doxdocgen.file.fileOrder": [],
"doxdocgen.file.versionTag": "",
"doxdocgen.generic.dateTemplate": "",
"doxdocgen.c.lastLine": "",
"doxdocgen.generic.generateSmartText": false,
"doxdocgen.c.triggerSequence": "44",
"doxdocgen.generic.order": [
"brief",
],
Interestingly, change "doxdocgen.generic.order": [
"brief",
], to "doxdocgen.generic.order": [
"brief","copyright"
],
the cursor is in the correct position ,but there is one more line of copyright.
The text was updated successfully, but these errors were encountered: