Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

intelliJ speed up tool tip appearance

I'm new to intelliJ and sometimes like to use the "tool tips" (or whatever the kids are calling it these days - the thing that pops up when your mouse hovers over it) to find out what the different buttons do.

Annoyingly, sometimes i have to wait more than a heartbeat for the tool tip to appear. Is it possible to edit the speed with which said tips appear in intelliJ when I hover my mouse over a tool-tip-enabled item?

EDIT i am running 12.0.1 - one solution below is for 12.1.3+ (as noted in the comments), any ideas for below 12.1.3

like image 628
bharal Avatar asked Jun 13 '13 12:06

bharal


People also ask

How can I make IntelliJ look better?

To change it, open the Settings / Preferences dialog and select Appearance & Behavior | Appearance. There, you can use the Theme selector to choose a UI theme. The built-in themes include Darcula, IntelliJ Light, Windows or macOS Light, and the special High Contrast theme for visually impaired users.

How do I show the toolbar in IntelliJ?

The main toolbar with buttons for opening and saving files, undo and redo actions is hidden by default. To show it, select View | Appearance | Toolbar.

How do I change my IntelliJ to light theme?

Change the UI theme In the Settings/Preferences dialog ( Ctrl+Alt+S ), select Appearance & Behavior | Appearance. Select the UI theme from the Theme list: IntelliJ Light: Traditional light theme for IntelliJ-based IDEs.


1 Answers

There is a setting in the Settings window.

enter image description here


Edit

This seems to be available from version 12.1.3 only.

You can although edit the idea.vmoptions file and add a line like this at the end:

-Dide.tooltip.initialDelay=200

This makes the tooltip appear much faster (at least in some areas). Try by hovering on a tab in the editor pane. It will pop up very fast. Then close IntelliJ and change the value to 20000 and try again. As you will notice it will take 20 seconds (as expected).

For example try hovering over buttons as you describe in your question. By setting the delay to a very low value the tooltip appears immediately.

like image 184
maba Avatar answered Sep 21 '22 16:09

maba