Reputation: 21236
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
Upvotes: 16
Views: 12717
Reputation: 1406
I was completely annoyed with Aptana's tip tool text over my code. I figured out how to disable it:
Window > Preferences > Aptana Studio > Content Assist > Show information on hover > Off
I'm using Aptana 3.
Upvotes: 5
Reputation: 3086
This is the answer. Change the Windows regedit. HKEY_CURRENT_USER ->Control Panel -> Mouse -> mouse -> MouseHoverTime Change its value to be 400 (4 seconds delay)
Upvotes: 0
Reputation: 21
Another thing which really annoys me on Eclipse are the light bulbs in the left part which hide breakpoints, and which are really useless.
To suppress these, go to windows>preference>java>editor and then uncheck "Light bulb for quick assists".
If you dont have this on your eclipse version, try a help search with "light bulb".
Upvotes: 2
Reputation: 497
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.
Upvotes: 6
Reputation:
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).
Upvotes: 14
Reputation: 322
Window > Preferences > Java > Editors > Hovers
Disable Combined Hover.
Upvotes: 9
Reputation: 6227
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!
Upvotes: -1