有没有一种方法可以禁用VS Code中的“ MDN参考Intellisense”弹出窗口(用于HTML和CSS)?

时间:2019-12-03 17:17:08

标签: visual-studio-code

这是在禁用所有其他代码提示功能的同时禁用this specific feature

我对Settings GUI以及settings.json非常熟悉,并进行了广泛的搜索,但是Intellisense / hints / suggestions配置似乎都不适用于此特定弹出窗口。

Annotated screenshot indicating the popup I wish to disable

4 个答案:

答案 0 :(得分:13)

只需转到代码->首选项->设置,搜索“启用编辑器悬停”并禁用复选框。

答案 1 :(得分:1)

似乎最终将在HTML文件的v1.52中出现,请参见https://github.com/microsoft/vscode/issues/97979-它也将出现在css / scss文件中。

两个新设置:

"html.hover.documentation": false,
"html.hover.references": false,

references只会禁用MDN Reference链接。 documentation还将设置所有MDN文档。

"html.hover.documentation": "Show tag and attribute documentation in hover.",
"html.hover.references": "Show references to MDN in hover."

答案 2 :(得分:0)

找到了这个,在settings.json中插入以下内容。它可能关闭的次数超出了您的期望,但至少该弹出窗口将消失。

"editor.hover.enabled": false,

要找到settings.json(右),请打开VSCode并按 Ctrl + P 。键入“ settings.json”,并确保您在AppData中(或在其中安装了VSCode的任何位置)打开其中一个。

答案 3 :(得分:0)

当您按 Ctrl + P 查找settings.json文件时,它将向您显示两个文件,即Open Default settings.json和Open settings.json。 您应该粘贴以下内容:

- "editor.hover.enabled": false,

在打开settings.json。

默认settings.json是不可编辑的。