答案 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
,您可以禁用该按钮以永远结束悬停弹出窗口。