views:

32

answers:

1

Hi All

I am using Eclipse (3.5.1), on Ubuntu 9.10 to write some C++ code. I was searching through endless settings but didnt find what I as looking for...

How can I force eclipse to make @param,(@see, @return etc) to be bold in the comments?

All the documentation will be generated with the doxygen so I dont really need anything else. Just a small thing to make work easier.

Thanks :)

+1  A: 

When I do

/**
 * @param foo
 ...

In Eclipse (Version: 3.5.1) I get

comment

With the doxygen plugin enabled for the project. Note the double asterisks.

Aiden Bell