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.