tags:

views:

1086

answers:

4

I don't know if anyone has noticed that Eclipse has this annoying feature where it needs to show a useless tool-tip when hovering just about anything.

I was wondering if anyone knows of a way to completely kill all tool-tip behavior in Eclipse / Aptana?

Thanks

A: 

Look for TweakUI settings, under Mouse > Hover. Minimize the sensitivity and increase the time and you will, in most cases, be fine.

Note that this is under windows. In any case, search for "hover" and you should be able to find the correct location. Good luck!

Demi
Sorry. I'm on Linux. This TweakUI thing is a Windows thing not an Eclipse thing, is that right? I just want to turn off all tooltips in Eclipse.
Luke
I don't see how this has anything to do with Ecplise or other editors.
drozzy
+3  A: 

Window > Preferences > Java > Editors > Hovers

Disable Combined Hover.

micro
Hmmm. I'm not able to find this option in Aptana. Is this a Eclipse 3.4 feature maybe?
Luke
I'm using Eclipse 3.3
micro
I guess it's because I don't have any Java editors installed.
Luke
+4  A: 

I found mine in Window > Preferences > Pydev > Editor > Hovers

It looks like it's a module-level feature (Java, Pydev, C++), not platform-level (Eclipse itself).

That's the stuff! Just disable Combined Hover. You can bring it up by stepping on the word and pressing F2.
drozzy
+1  A: 

I agree, hints can be really annoying, but there are times when they can be a really useful quick reference - like finding var values during debugging, or required parameter types for a method etc.

So instead of disabling them altogether, or continually enbaling/disabling through the Preferences, I go to Window > Preferences > Java > Editor > Hovers > Combined Hover, and add Alt to the Pressed key modifier while hovering field below.

This way if you want to quickly see hints just hold the Alt key down.

Drew