News wrote that Eclipse 3.5 finally supports column selection. Unfortunately I don't know HOW to enable it. I tried pressing the ALT-key like I am used to in Visual Studio and all other Microsoft products but that had no effect.

How can I mark a vertical block in Eclipse?

link|improve this question

71% accept rate
feedback

5 Answers

up vote 35 down vote accepted

According to DJ's Java Blog you press Alt+Shift+A.

link|improve this answer
I see, it is a whole "mode" that needs to be enabled. – vobject Jun 27 '09 at 23:29
1  
alt+shift+a dnw for me on osx – erikvold Feb 2 '11 at 2:21
Great! I've been looking for how to use this feature! =) – AndroidHustle Aug 26 '11 at 10:02
alt+shift+a is not working in my eclipse. how to enable it from the eclipse? – Steve Desai Dec 30 '11 at 9:53
I think it's an Eclipse 3 or 3.5 feature? – JustCallMeNew Apr 6 at 12:41
feedback

On Windows and Linux, it's Alt-Shift-A, as RichieHindle pointed out. On OSX it's Option-Command-A (⌘⌥A). It's also worth noting that the two modes can have different font preferences, so if you've changed the default text font, it can be jarring to toggle block selection modes and see the font change.

Finally, the "search commands" (Ctrl-3 or Command-3) pop-up will find it for you if you type block. This is useful if you use the feature just frequently enough to forget the hotkey.

link|improve this answer
+1 for the generally useful search commands hint. – bassim 20 hours ago
feedback

Additionally, you can change the keys view window -> preferences then type: 'keys' and when the key preference page opens you can type 'toggle block selection' and voila!

link|improve this answer
Thanks for the info. I am new to the Eclipse IDE and only knew the "Key-Assist" window. – vobject Jun 27 '09 at 23:27
Glad to help :) – javamonkey79 Jun 28 '09 at 7:08
feedback

As RichieHindle pointed out the shortcut for column (block) selection is Alt+Shift+A. The problem I ran into is that the Android SDK on Eclipse uses 3 shortcuts that all start with Alt+Shift+A, so if you type that, you'll be given a choice of continuing with D, S, or R.

To solve this I redefined the column selection as Alt+Shift+A,A (Alt, Shift, A pressed together and then followed by a subsequent A). To do this go to Windows > Preferences then type keys or navigate to General > Keys. Under the Keys enter the filter text of block selection to quickly find the shortcut listing for toggle block selection. Here you can adjust the shortcut for column selection as you wish.

link|improve this answer
feedback

You can enable and disable column editing mode via the keyboard shortcut ALT-SHIFT-A.

Once enabled you can then use either the mouse to select a block of text, or the keyboard using SHIFT (like a normal keyboard select, except the selection will now be in a block).

If you've changed your default font for text editing, entering column editing mode will probably change your screen font to the default column editing font (which is probably different to your changed font. To change the font when in column editing mode, go to the menu and select Window -> Preferences, then in the tree on the left hand side, pick General -> Appearance -> Colors and Fonts, and then pick Basic -> Text Editor Block Selection Font on the right hand side tree. You can then select the font to be consistent with your "not in column editing mode" font.

link|improve this answer
feedback

protected by Community Feb 22 at 10:34

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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