如何禁用这些 VSCode 工具提示?

How to disable these VSCode tooltips?

每当我打字时,这些工具提示都会出现。有没有办法禁用它们?

VSCode 中有几种自定义 IntelliSense 的方法。我相信你图片中的那个是参数提示。您可以转到 文件 → 首选项 → 设置 并搜索 "parameterHints".

以下是您可以调整的其他一些内容:

// 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

更多信息here

缺少一项禁用某些提供更多信息的工具提示的设置。

转到 VSCode 中的“设置”并搜索 Hover 您可以禁用它以永远结束悬停弹出窗口。