Jarek
Jarek

Reputation: 7729

Any way to hide comments in Eclipse

Does anyone know if it would be possible to hide java comments in Eclipse? Is there any trick I could try?

Upvotes: 24

Views: 23922

Answers (2)

Mark Mayo
Mark Mayo

Reputation: 12585

You can fold most block /* ... */ comments to a single line. You can't do that inside code blocks (method bodies, static blocks, etc.) and maybe a few other places. You also can't collapse multiple lines of // ... style comments.

You could always change the syntax highlighting colors so the comments are in the background color. ;)

To turn on folding: Windows->Preferences->Java->Editor->Folding

Upvotes: 18

wfoster
wfoster

Reputation: 791

Enabling 'Folding' in the preferences dialog lets you use the '+' and '-' buttons next to the line numbers to hide comments. Do do this...

Windows->Preferences->Java->Editor->Folding

Then the comments will go away!

Upvotes: 10

Related Questions