Developer forums (C::B DEVELOPMENT STRICTLY!) > Plugins development

Doxygen plugin

<< < (45/53) > >>

NefX:

--- Quote from: MortenMacFly on September 09, 2010, 06:14:27 am ---I agree here, as usually Doxygen handles that for you anyways. I'd say the variable name is enough.

--- End quote ---
Yeah, you can see type name already so it's not needed.

Two things I would like to see -  code completion displaying doxygen comments and automatic adding e.g. '///' when making new line (inside doxygen comment).  By the way how to change default hotkeys from this plugin?

Folco:
First time I use your plugin Cryogen. It's very efficient, good job and thank you !

Cryogen:

--- Quote from: Folco on November 14, 2010, 11:50:12 am ---First time I use your plugin Cryogen. It's very efficient, good job and thank you !

--- End quote ---

[Admin: Removed non-english content.]

I'm glad you found it useful.

Cheers.

koso:
Hi,

it seems that plugin has problem with commenting multiline function/procedure declarations. It adds block comment, but parameter names (and types) are missing. For example:


--- Code: ---    /** @brief
     *
     * @param
     * @param
     * @return
     *
     */                             
    void handle_write(const int error,
                      long bytes_transferred)
--- End code ---


but I expected this:


--- Code: ---    /** @brief
     *
     * @param error const int
     * @param bytes_transferred long
     * @return void
     *
     */                             
    void handle_write(const int error, long bytes_transferred)
--- End code ---

Cryogen:

--- Quote from: koso on December 20, 2010, 03:44:02 pm ---Hi,

it seems that plugin has problem with commenting multiline function/procedure declarations. It adds block comment, but parameter names (and types) are missing. For example:


--- End quote ---

Yes, quite right. I could find no way to make it accommodate them. I still can't, unfortunately.

The barely useful work-around is to condense the declaration to one line, generate the comment, then revert it.

Cheers.

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version