doxdocgen icon indicating copy to clipboard operation
doxdocgen copied to clipboard

File comment

Open stegzzz opened this issue 1 year ago • 2 comments

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 avatar Dec 13 '23 11:12 stegzzz

@stegzzz Same here: I confirm that the latest 1.4.0 doesn't insert the file comment, opening the trigger comment on line 1

luc0x61 avatar Jan 10 '24 12:01 luc0x61

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.

SeekerDexter avatar May 20 '24 09:05 SeekerDexter