gpt4 book ai didi

visual-studio-code - 禁用在 VS Code 中显示有关符号/对象信息的悬停

转载 作者:行者123 更新时间:2023-12-05 09:12:06 25 4
gpt4 key购买 nike

我怎样才能禁用在 VS Code 中显示有关符号/对象的信息的悬停功能。

enter image description here

该功能的链接 - https://code.visualstudio.com/api/language-extensions/programmatic-language-features#show-hovers

我可以使用以下设置来禁用悬停,但这也会删除我一直使用的快速修复悬停

enter image description here

"editor.hover.enabled": true

最佳答案

您可以通过为这些功能设置 false 来解决这个问题。

//Remove parameter hint box
"editor.parameterHints.enabled": false,

//Disable hover
"editor.hover.enabled": false,

//Controls if quick suggestions should show up while typing
"editor.quickSuggestions.enabled": false,

这是针对较新版本的 Visual Studio。如果有人使用旧版本,你可以试试这个

"editor.parameterHints": false,
"editor.hover": false,
"editor.quickSuggestions": false,

关于visual-studio-code - 禁用在 VS Code 中显示有关符号/对象信息的悬停,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59182584/

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