如何禁用VSCode中的默认提示信息?有时候很烦人。
当前回答
要隐藏这些提示,你可以添加“编辑器”。parameterHints": false为你的settings.json。在这里找到了答案。
其他回答
在1.27.2版本中,我发现只有这个参数禁用了所有的工具提示:"editor.hover。启用”:假的。
如果你不是在寻找禁用,正如用户:Darrell Brogdon上面提到的,如果你想延迟工具提示的悬停时间作为解决方案,那么只需在用户设置中添加下面一行与你想要的时间值。 根据您的需要替换值3000。 注意:悬停设置在新版本的在线服务设置中被移动,因此你可能无法在用户设置中搜索“悬停”。
// modify in Preferences --> Settings or settings.json
"editor.hover.delay": 3000,
Arrrg ! !
Hope this helps others. Running with v1.72.1. For the life of me was trying all the different settings, options, suggesting and couldn't get the tooltip help disabled... Coffee might have been my solution, finally noticed in the tooltip window there is an 'x' in the upper right corner for a close, clicking it. WOW! It worked and seems to have persisted my desire to dismiss them. I wanted them gone.... Perfect!!! Thinking about it, don't see a way to get them back if someone might actually want them back. VS Code is nice for a lot of stuff, but pretty bad for some of it's design and usability...
这里没有人提到的简单方法:代码→首选项→设置。搜索“hover”。取消选中“编辑器>悬停:已启用”复选框。
对于1.31+版本,这一行为我做了:
"editor.parameterHints.enabled": false
推荐文章
- 如何设置每个文件类型的标签大小?
- 我如何添加环境变量启动。VSCode中的json
- 如何格式化Visual Studio Code项目中的所有文件?
- Pylint在Visual Studio代码中“未解决的导入”错误
- 如何在VS Code中默认打开文本换行
- 在Visual Studio代码中更改突出显示文本的颜色
- Visual studio代码-键盘快捷键-全部展开/折叠
- Visual Studio Code无法检测已安装的Git
- 禁用Visual Studio代码中的工具提示提示
- Visual Studio Code -将空格转换为制表符
- 在VSCode中的列自动硬换行
- Visual Studio Code:格式没有使用缩进设置
- 如何排除文件扩展名和语言从“格式保存”在VSCode?
- Visual Studio代码- URI的目标不存在" package:flutter/material.dart "
- VSCode——如何设置调试Python程序的工作目录