vote up 2 vote down star

Hi all I'm at university, and we were taught to use notepad to programme java to start with. I moved onto notepad++ and quickly onto eclipse. In notepad++, i could roll up (plus minus sign) if statements or for loop as well as methods and classes. I wondered if there is a plugin for eclipse that allows me to do the same?

Also, are there any essential plugins i should be using with eclipse? I'm rather new to programming.

Thanks in advance

Ben

flag

3 Answers

vote up 2 vote down check

In Eclipse you can use Shift-Alt-Arrow Up to mark the surrounding block to the current block (and Shift-Alt-Arrow Down to narrow down again). Then Arrow-left place you at the beginning of the block, and Arrow-Right at the end.

(Untested, from memory, but VERY handy).

link|flag
thats handy! thanks. sadly the question still remains unanswered – Relequestual Apr 19 at 15:31
seems there is no way currently of doing this. oh well – Relequestual Apr 23 at 9:00
vote up 0 vote down

Try this plugin.

link|flag
vote up 1 vote down

The eclipse Coffee-Bytes Code Folding Plug-in (which is mentioned by htw) is no longer available.

Starting with release 3.0, Eclipse allows folding in its text editor, and that include code folding for classes, comments, imports, but not for if or loop structures.

alt text

A simple double click at the beginning or end of a block ({) is enough to highlight the all block.

link|flag
Ah, sorry about that, I didn't notice—thanks for the heads up! – htw Apr 18 at 21:27
darn, that looked like the exact thing i was looking for! :( – Relequestual Apr 19 at 15:34

Your Answer

Get an OpenID
or

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