anb0s / eclox

Eclox is a simple doxygen frontend plug-in for eclipse. It aims to provide a slim and sleek integration of the code documentation process into Eclipse.
http://anb0s.github.io/eclox
Eclipse Public License 2.0
34 stars 2 forks source link

Feature Request: Change @ to \ for doxygen comments #168

Closed reneparis closed 7 years ago

reneparis commented 8 years ago

Hey,

I'm forced to worke with "old style" comments, such as \param and \return. It would be nice if there is a possibility to change the opening character.

Thanks!

anb0s commented 7 years ago

Eclox has support for the features (only):

Eclox has no support for writing comments (content assists etc.) in source files. The only setting i know comes from CDT and it supports all C/C++ file types (h, c, cpp): one has to enable it for the workspace or the project (like @Corderbollie described in #185). Then you have some simple generation of the comment block -> just remove the comments from your function / method etc. and then type '/**' + ENTER. Then it generates something like this:

/**
 *
 * @param ...
 * @return
 */
anb0s commented 7 years ago

see #2

anb0s commented 7 years ago

see issue in CDT: https://bugs.eclipse.org/bugs/show_bug.cgi?id=333134