user8865053
user8865053

Reputation: 101

VS Code: How to disable function hover pop-up without disabling anything else, and preferably to only activate on demand with a keyboard shortcut?

Haven't figured out how to do this yet after multiple web and Settings searches, and not finding this asked already here.

I tried "editor.hover": false, but it just puts a green squiggly underline under it saying it's an unknown configuration setting.

If I make a function call in say a .php file, then inadvertently hover over it, it pops up an un-called-for box obscuring what I'm reading or blocking what I meant to click.

I'd like to be able to stop this and only have it activate on-demand with a keyboard shortcut, but without disabling other features.

Upvotes: 1

Views: 1222

Answers (2)

vadims
vadims

Reputation: 147

The only setting that works on version 1.29.1 is:

"editor.hover.enabled": false,

Upvotes: 2

Josh Zandman
Josh Zandman

Reputation: 16

This is the only combination that worked for me:

"editor.parameterHints": false,
"editor.hover": false,
"editor.quickSuggestions": false,

Upvotes: 0

Related Questions