是否有使用 IntelliSense Emmet 的自定义属性的快捷方式?

Is there any shortcut for custom attributes using IntelliSense Emmet?

例如,我想用这个输入:

.classOne#idOne?customAttribute?customAttributeValue

然后,当在键盘上点击 Tab 时,我想得到这个输出:

<div class="classOne" id="idOne" customAttribute="customAttributeValue"></div>

使这 input/output 成为可能的 {?} 个字符是什么?

您可以将自定义代码段放入 snippets.json

https://vscode.readthedocs.io/en/latest/editor/emmet/#using-custom-emmet-snippets

Emmet Docs可以描述一下如何去做。

输入:

.classOne#idOne[customAttribute=customAttributeOne]

输出:

<div class="classOne" id="idOne" customAttribute="customAttributeOne"></div>