Answers:
editor.hover.enabled: false
在settings.json中到工具提示
单击settings.json中的Edit
有两个窗格
默认用户设置
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
}
用户设置
"editor.parameterHints.enabled": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"html.suggest.html5": false,
"editor.snippetSuggestions": "none",
这也可以通过UI完成。
设置代码段建议:false
更新2018年8月(1.27版)
去 File=>Preference=>Settings
Text Editor => Suggestions
单击settings.json中的Edit
"editor.parameterHints.enabled": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"html.suggest.html5": false,
更新您的建议选项并保存。
2018年8月之前
去 File=>Preference=>User Settings
你会找到 settings.json
// Configures if the built-in HTML language support suggests Angular tags and properties.
"html.suggest.angular1": false,
"html.suggest.ionic": false,
"html.suggest.html5": false,
只需找到您的语言并设置 suggest = false
更新资料
设置为关闭所有弹出窗口
"editor.parameterHints": false
要隐藏这些提示,您只需将其添加"editor.parameterHints": false
到中即可settings.json
。在这里找到答案。
"editor.hover.enabled": false,
是您的防弹解决方案。然后,您可以使用CTLR + K,CTLR +I。
我发现对“编辑器”>“悬停”使用更大的值:“延迟”(在设置搜索栏中搜索“延迟”)对我有用。默认值为300毫秒。这并不能满足实际上消除工具提示的愿望,但是让它们仅在2秒钟后出现,对我来说大大减少了视觉混乱。
这里没有人提到的一种简单方法:代码→首选项→设置。搜索“悬停”。取消选中显示“编辑器>悬停:已启用”的复选框。
这是noob版本,假设您对VS Code了解很少(像我一样)。
视窗。VS代码版本:1.37.1
Rockstar版本:像Balla一样编辑JSON
如果您不熟悉编码,可以使用这些工具提示。您可能想要代替Logan建议的那样延迟其外观。
单击此处:https : //stackoverflow.com/a/53512394/8623576 或直接向上滚动!:)
注意:我很感谢其他人发布了几乎完全相同的答案,但是,正如我提到的那样,这是NOOB版本,它假定用户几乎没有使用VS Code的经验。