How to disable these VSCode tooltips?

2020-03-04 08:44发布

问题:

Whenever I am typing, these tooltips show up. Is there a way to disable them?

回答1:

There are a few ways to customize the IntelliSense in VSCode. I believe the one in your picture is a parameter hint. You can go to File → Preferences → Settings and search for "parameterHints".

Here are some others you can tweak:

// Controls if quick suggestions should show up while typing
"editor.quickSuggestions": true,

// Controls if suggestions should be accepted with "Enter" - in addition to "Tab". Helps to avoid ambiguity between inserting new lines and accepting suggestions.
"editor.acceptSuggestionOnEnter": true,

// Controls the delay in ms after which quick suggestions will show up.
"editor.quickSuggestionsDelay": 10,

// Enable word based suggestions
"editor.wordBasedSuggestions": true,

// Enable parameter hints
"editor.parameterHints": true

More info here.



回答2:

There is one missing setting to disable some tooltips which gives more information.

Go to Settings in VSCode and search for Hover you can disable that one to finish with the hover popups forever.