之前给 VS Code 撸了个Auto Close Tag,默认情况下是对所有语言都 enable 的,但是会对有些语言造成 side effect ,比如 C++,写#include <iostream>,就会变成#include <iostream></iostream>。现在准备只对特定的一些语言才开启这个功能,想问问 V 友还有哪些语言是会内嵌 html 的?🤔 现在整理了一部分: https://github.com/formulahendry/vscode-auto-close-tag/issues/26
"auto-close-tag.activationOnLanguage": [
"html",
"xml",
"php",
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"plaintext",
"markdown"
]