在代码段说明字段中设置文本格式

时间:2017-08-16 09:20:12

标签: visual-studio-code code-snippets textmate vscode-extensions

有没有办法在片段的描述字段中格式化文本?
像\ n \ t这样的基本格式正常工作,但有没有办法改变文字颜色等等?

1 个答案:

答案 0 :(得分:0)

我认为很多人都不需要此功能。如果你想要标记一些代码片段,你可以使用表情符号:

"console.log": {
    "prefix": "cl",
    "body": [
        "console.log($1)"
    ]
}

enter image description here