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

时间:2017-06-27 16:58:32

标签: visual-studio-code vscode-settings

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

tooltip

2 个答案:

答案 0 :(得分:4)

有几种方法可以在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

答案 1 :(得分:0)

缺少一项设置可以禁用一些工具提示,从而提供更多信息。

转到VSCode中的“设置”,然后搜索Hover,您可以禁用该按钮以永远结束悬停弹出窗口。