0

Explanation of functions/methods and objects appear while the cursor is on that particular piece of code. I want to disable this explanation.

Gama11
  • 31,714
  • 9
  • 78
  • 100
hasanadeem
  • 69
  • 9
  • See https://code.visualstudio.com/docs/editor/intellisense#_customizing-intellisense – Mark Sep 07 '19 at 19:38

1 Answers1

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