自定义 emmet 片段在 vscode 中不起作用
Custom emmet snippets not working in vscode
我正在尝试设置自定义 emmet 片段,但它不起作用。
我的snippets.json文件
{
"html": {
"snippets": {
"testing": "div{Hello World}"
}
}
}
我的文件肯定是 'HTML' 格式,我尝试重新启动 vscode。
我还检查了 snippets.json 的路径是否正确并且在 'settings'.
中可见
也试过两台不同的机器,同样的情况。
这里是settings.json
{
"some other settings",
"emmet.extensionsPath": ["D:\FRONTEND\snippets.json"]
}
emmet.extensionsPath
采用 目录 而不是文件路径,所以尝试
"emmet.extensionsPath": ["D:\FRONTEND"]
改为
Using custom Emmet snippets
Custom Emmet snippets need to be defined in a json file named
snippets.json
. The emmet.extensionsPath
setting should have the
path to the directory containing this file.
您的代码段语法有点错误,这是正确的,复制粘贴:
(必须根据需要修改前缀)
"html": {
"prefix": ["div"],
"body": "div{Hello World}",
"description": "div"
}
我正在尝试设置自定义 emmet 片段,但它不起作用。
我的snippets.json文件
{
"html": {
"snippets": {
"testing": "div{Hello World}"
}
}
}
我的文件肯定是 'HTML' 格式,我尝试重新启动 vscode。
我还检查了 snippets.json 的路径是否正确并且在 'settings'.
也试过两台不同的机器,同样的情况。
这里是settings.json
{
"some other settings",
"emmet.extensionsPath": ["D:\FRONTEND\snippets.json"]
}
emmet.extensionsPath
采用 目录 而不是文件路径,所以尝试
"emmet.extensionsPath": ["D:\FRONTEND"]
改为
Using custom Emmet snippets
Custom Emmet snippets need to be defined in a json file named
snippets.json
. Theemmet.extensionsPath
setting should have the path to the directory containing this file.
您的代码段语法有点错误,这是正确的,复制粘贴: (必须根据需要修改前缀)
"html": {
"prefix": ["div"],
"body": "div{Hello World}",
"description": "div"
}