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

I'm very used to having ctrl-click select the word below my cursor and in Eclipse the authors seem to think it's better to make it move to the definition. I disagree, but can't find how/where to fix this. Searching on the internet and on here as well leads to hundreds of people wanting Eclipse-style ctrl-click everywhere - I want to get rid of it.

How?

share|improve this question

3 Answers

up vote 16 down vote accepted

Go to Window - Preferences - General - Editors - Text Editors - Hyperlinking preference page,

uncheck the option Open Declaration

share|improve this answer
Thanks! that resolves the most annoying part. I still need to get the selection working... – dascandy Dec 23 '10 at 9:36
Wow this tip made my day! Thanks!! – Mark Knol Jun 14 '12 at 9:06
Thank you very much. Disabling Hyperlinking fixed a couple second freeze that occurred every time I did a copy / paste, presumably due to the Default modifier key being set to Ctrl. – mattblang Nov 29 '12 at 21:06

For the selection part:

I use AutoHotKey with the following script:

#IfWinActive ahk_class SWT_Window0
^~LButton::Send !+{Up}

The first line makes sure the macro is only run when eclipse (SpringSource Tool Suite in my case) is active. Use AHK's built-in 'Window Spy' to check the window class for different IDEs.

The second line sends Alt+Shift+Up (default select word shortcut) when you Ctrl+Click in the IDE

share|improve this answer
It's a shame you replied so late - you deserve more upvotes. – dascandy Jul 11 '12 at 10:28
AutoHotKey is for Windows only. Anyone knows how to achieve this on Mac OS X? – dbernard Nov 27 '12 at 15:14

Close Eclipse.

Delete: /path/to/workplace/.metadata/.plugins/org.eclipse.jdt.core

Open eclipse and let it rebuild its indexes. Job done.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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