doxdocgen icon indicating copy to clipboard operation
doxdocgen copied to clipboard

We miss the attribute of the class

Open MaximilienNaveau opened this issue 6 years ago • 2 comments

It would be very cool if this would also work for the class attributes. (Or maybe I did not fully understand how to parametrize it ;) )

Code example

class A{
    /** [press enter]
    int b;
}

Expected result

class A{
    /**
      * @brief b 
      */
    int b;
}

or at least the possibility to edit a string for the attribute

Actual result

class A{
    /**
      * @brief
      */
    int b;
}

MaximilienNaveau avatar Nov 23 '18 18:11 MaximilienNaveau

Hi @MaximilienNaveau,

yes it would be great :) Right now the extension only does functions/methods. This would all be so much easier if MS would just expose the info (they have) in their language server.

cschlosser avatar Nov 23 '18 21:11 cschlosser

Thanks for your reactivity I am just new in VSCode but so far it is been a surprisingly good experience. Hope you can keep up the good work with this extension^^ Have a nice day.

MaximilienNaveau avatar Nov 26 '18 09:11 MaximilienNaveau