在VS Code中禁用HTML注释的自动关闭

时间:2018-07-12 17:48:50

标签: html autocomplete visual-studio-code comments

我有

"html.autoClosingTags": false,
"editor.autoClosingBrackets": false

在我的设置中,它对HTML注释以外的所有标签均适用。当我输入<!--时,它将自动完成-->。我浏览了编辑器和HTML中的其他选项,找不到如何将其关闭。

1 个答案:

答案 0 :(得分:0)

将第二个设置更改为此:

"editor.autoClosingBrackets": "never"

那应该解决它。