如何禁用VS代码中有关符号/对象的信息的悬停功能。
链接到该功能-https://code.visualstudio.com/api/language-extensions/programmatic-language-features#show-hovers
我可以使用以下设置禁用悬停功能,但这也删除了我经常使用的快速修复悬停功能
“ editor.hover.enabled”:是
答案 0 :(得分:3)
您可以通过将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,