【发布时间】:2018-01-22 03:56:58
【问题描述】:
在上次更新后,Emmet 以某种不同(不正确)的方式工作。
如果我在 Emmet 语法中键入常用代码,例如:
.row>.col*2
然后按 Tab 不起作用。
如果我输入:
h1{Some title}
然后按 Tab 它也不起作用,但是如果我将光标放在括号内,然后按 Tab - 在这种情况下它会起作用。
这是我的 Visual Studio Code 配置:
"editor.fontSize": 12,
"editor.wordWrap": "on",
"editor.wrappingIndent": "indent",
"editor.minimap.enabled": true,
"workbench.iconTheme": "material-icon-theme",
"window.zoomLevel": 0,
"window.openFilesInNewWindow": "off",
"window.openFoldersInNewWindow": "on",
"workbench.welcome.enabled": false,
"workbench.colorTheme": "Default Light+",
"[stylus]": {
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
}
},
"emmet.preferences": {
"stylus.valueSeparator": ": "
},
"git.enableSmartCommit": true
我该如何解决?
【问题讨论】:
标签: visual-studio-code emmet vscode-settings