Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

5 Answers

up vote 76 down vote accepted

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

share|improve this answer
I see, it is a whole "mode" that needs to be enabled. – vobject Jun 27 '09 at 23:29
3  
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? – Yog Guru Dec 30 '11 at 9:53
I think it's an Eclipse 3 or 3.5 feature? – StackOverflowed Apr 6 '12 at 12:41

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.

share|improve this answer
3  
+1 for the generally useful search commands hint. – bassim May 23 '12 at 14:18
I use mac also. – imcaptor Mar 28 at 13:51

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.

share|improve this answer
2  
it's a very useful information for Android developers. thank you. – Emir Akaydın Jun 1 '12 at 8:24
That was easy. Great utility for all Android devs. Thank you! – Kyle Jun 22 '12 at 6:47
Especially nice to put the instructions here... I was searching for toggle block selection in the Keys entry already, but I had no idea what the name was... – Timo Oct 23 '12 at 20:42

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!

share|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

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.

share|improve this answer

protected by Community Feb 22 '12 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.