379

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?

Dana the Sane
  • 14,762
  • 8
  • 58
  • 80
vobject
  • 5,290
  • 3
  • 29
  • 21

8 Answers8

508

To activate the cursor and select the columns you want to select use:

Windows: Alt+Shift+A

Mac: command + option + A

Linux-based OS: Alt+Shift+A

To deactivate, press the keys again.

This information was taken from DJ's Java Blog.

Leos313
  • 5,152
  • 6
  • 40
  • 69
RichieHindle
  • 272,464
  • 47
  • 358
  • 399
123

On Windows and Linux, it's AltShiftA, as RichieHindle pointed out. On OSX it's OptionCommandA (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" (Ctrl3 or Command3) 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.

Geoffrey Wiseman
  • 5,459
  • 3
  • 34
  • 52
  • 13
    To modify the font in this selection mode: Eclipse -> Preferences -> General -> Appearance -> Colors and Fonts -> Basic -> Text Editor Block Selection Font. – John Oct 17 '13 at 09:08
  • Is there a way to enable column mode select when looking in the console or JUnit console view? Alt-Shift-A only works in the source code editing window / view. – JasonRobinson Jan 26 '17 at 00:20
  • I don't see any way to enable block selection in the console -- you could copy the content out to an Eclipse buffer and then select there. – Geoffrey Wiseman Jan 26 '17 at 17:14
66

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.

Community
  • 1
  • 1
Peter Ajtai
  • 56,972
  • 13
  • 121
  • 140
  • 3
    it's a very useful information for Android developers. thank you. – Emir Akaydın Jun 01 '12 at 08:24
  • That was easy. Great utility for all Android devs. Thank you! – Kyle Clegg Jun 22 '12 at 06: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
  • I wish there was a way to get rid of the anoying android als+shift+a choices :( and no I don't have the android plugin installed as far as I can tell) – AmanicA Aug 15 '13 at 10:41
  • I unbound all the other ALT+Shift+A commands and toggle block selection isn't working as a hotkey currently. EDIT: Restarting ADT fixed the hotkey issue. Alt+Shift+A is working fine now. – fIwJlxSzApHEZIl Oct 21 '13 at 22:14
  • @AmanicA You can easily unbind the Android plugin's shortcuts from the above-mentioned Keys dialog. However, if you don't have the Android plugin installed, then you don't have its shortcuts either. – JMTyler Dec 02 '13 at 18:02
28

First of all your mouse key must be focus in editor to enable Toggle Block Selection Mode

enter image description here

Click on toggleButton as shown in figure and it will enable Vertical selection. After selection toggle it again.

Zar E Ahmer
  • 33,936
  • 20
  • 234
  • 300
  • This works on ADT, also it shows that the shortcut is **Alt+Shift+A** but that doesn't work. – Rombus Mar 23 '15 at 13:33
  • 2
    Thanks for the screenshot. The keyboard shortcuts listed here assume the shortcut actually works. Since that is non-visual, pointing to the button is a great reference. Plus, the button indicates its shortcut key with a tool-tip. In this case, the ALT+SHIFT+A solution, which does not work in the Android Developer Tools v22.0.1-685705. – CrazyIvan1974 Jun 04 '15 at 16:15
  • 1
    This option is also available under Edit >> Toggle Block Selection. – Jim Fell Apr 22 '21 at 14:36
15

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!

javamonkey79
  • 17,443
  • 36
  • 114
  • 172
10

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.

jklp
  • 2,091
  • 2
  • 23
  • 37
8

A different approach:

The vrapper plugin emulates vim inside the Eclipse editor. One of its features is visual block mode which works fine inside Eclipse.

It is by default mapped to Ctrl-V which interferes with the paste command in Eclipse. You can either remap the visual block mode to a different shortcut, or remap the paste command to a different key. I chose the latter: remapped the paste command to Ctrl-Shift-V to match my terminal's behavior.

HRJ
  • 17,079
  • 11
  • 56
  • 80
0
  • Press Alt + Shift + A
  • Observe that the screen zooms out
  • Make selection using the mouse
  • Press Alt + Shift + A to go back to the old mode. enter image description here
S Krishna
  • 1,255
  • 13
  • 9