gpt4 book ai didi

visual-studio-code - 在 Visual Studio Code 中禁用工具提示提示

转载 作者:行者123 更新时间:2023-12-03 05:15:16 24 4
gpt4 key购买 nike

如何禁用 VSCode 中的默认工具提示提示消息?有时很烦人。

enter image description here

最佳答案

editor.hover.enabled: false in settings.json to Tooltip

点击settings.json中的“编辑”

有两个 Pane

默认用户设置

"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)

转到文件=>首选项=>设置

文本编辑器 => 建议

点击settings.json中的“编辑”

"editor.parameterHints.enabled": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"html.suggest.html5": false,

更新您的建议选项并保存。

New update option

2018 年 8 月之前

转到文件=>首选项=>用户设置

您将找到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

更新

Setting to turn off ALL popups

"editor.parameterHints": false

See the settings.json

关于visual-studio-code - 在 Visual Studio Code 中禁用工具提示提示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41115285/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com