Explanation of functions/methods and objects appear while the cursor is on that particular piece of code. I want to disable this explanation.
Asked
Active
Viewed 926 times
0
-
See https://code.visualstudio.com/docs/editor/intellisense#_customizing-intellisense – Mark Sep 07 '19 at 19:38
1 Answers
1
Edit your settings.json
and add:
"editor.hover.enabled": false
Alternatively you can use settings editor, go to File -> Preferences -> Settings, search for editor.hover.enabled
and uncheck the checkbox.
You can also customize the time until the hover is shown with editor.hover.delay
.

Diogo Rocha
- 9,759
- 4
- 48
- 52