Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This question already has an answer here:

Some days ago my Eclipse was working fine and a +/- appeared in every block that could be collapsed (functions, classes, etc.)... but now it does appear, and I don't know how to activate that feature again. I know this question is kind of silly, but it's driving me nutts.

If it helps, it's Eclipse Helios, running on a Gentoo Linux box.

share|improve this question

marked as duplicate by George Stocker Mar 20 at 17:17

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

7 Answers

up vote 32 down vote accepted

Preferences -> C++ -> Editor -> Folding ?

Make a right click in the editor window and go to preferences there, then only the editor-relevant section of the preferences dialog will appear. This works for JDT, CDT etc...

share|improve this answer
Another way is to right-click the narrow vertical bar has has all of the (+)/(-) little pluses and minuses. The option to fold the code will be there. – Anonsage Mar 19 at 16:19

You can do Ctrl + Numpad_Divide to enable folding. Also if you right-click on the area where the +/- was supposed to be, you can see there is a folding option.

share|improve this answer
That option is selected and working but I want folding for If/else and switch cases... How can I get that ? – Amit Dec 26 '12 at 9:24

Try this option: Preferences > Java > Editor > Folding > Enable folding

share|improve this answer

In Preferences, you'll find General > Keys. It's for setting your keyboard shortcuts.

What I use it for more often, though, is to find stuff in Eclipse. You should see an input box labelled "type filter text." It's as close as Eclipse comes to a search feature for every Eclipse command.

share|improve this answer

I assume you are using Java, but look under the settings for your particular language.

Under the Window menu, select Preferences.

Under Java->Editor->Folding. Select "Enable Folding".

share|improve this answer
That option is selected and working but I want folding for If/else and switch cases... How can I get that ? – Amit Dec 26 '12 at 9:23

If you want folding an all your editors, I found you can enable Folding in

Preferences > Editors > Structured Text Editors

Enable Folding

share|improve this answer

For Python it is as follows:

  • collapse all 1 level: Ctrl+9
  • expand all 1 level: Ctrl+0
  • collapse current: Ctrl+-
  • expand current: Ctrl++

Hope that helps.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.