如何禁用VSCode中的默认提示信息?有时候很烦人。


当前回答

对于1.31+版本,这一行为我做了:

"editor.parameterHints.enabled": false

其他回答

"editor.hover.enabled": false,

是你的防弹方案。然后你可以使用CTLR + K, CTLR + I。

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...

要隐藏这些提示,你可以添加“编辑器”。parameterHints": false为你的settings.json。在这里找到了答案。

在1.27.2版本中,我发现只有这个参数禁用了所有的工具提示:"editor.hover。启用”:假的。

我发现使用更大的编辑器>悬停:延迟(在设置搜索栏中搜索“延迟”)对我来说很有用。默认值是300ms。这并不能真正消除工具提示,但是让它们只在2秒后出现,对我来说,减少了视觉上的混乱。