I´ve been messing around with the auto formatter (default) from Eclipse 3.6 While configuring things I didn´t find a possibility to indent comments which comes after some code in a line. (Language is c)
e.g.
int example; //comment1
int another_example; //comment2
when I´m using the auto formater it removes the indentation like this:
int example; //comment1
int another_example; //comment2
Is there a way to do so and not avoiding the formater to come in effect on those line?