Reputation: 131525
I'm a new user of CLion (version 2020.2), writing C++ code.
CLion has some sort of Doxygen support - it's willing to "render" Doxygen and present the rendered comment in a side-pane. However, within the code itself, the Doxygen comments have the same font and color as regular comments.
I know that in Eclipse, the preferences has an option you can set which sets Doxygen comments to a different color. Is there something equivalent in CLion?
Note: A plugin would be fine; but I couldn't find a relevant one, searching for "Doxygen".
Upvotes: 2
Views: 378
Reputation: 354
I have this running in version 2020.3:
They have also recently fixed a bug with this feature in version 2021.2 EAP.
You basically go to your Settings and go into Editor | Color Scheme | Language Default and there you'll find the "Comments | Doc Comment" section.
you can specify different colors for doxygen comments, and even different handling of different sections of your doxygen comments
Upvotes: 1