VS Code中的多个片段前缀

问题描述 投票:0回答:1

我正在尝试写一个允许我加入console.log()的片段。以下仅在我键入con时有效。

"Print to console": {
    "prefix": "con",
    "body": [
        "console.log($1);"
    ]
}

我希望它也适用于以下所有字母(例如consconsoconsolconsole)。 是否有可能或者我必须多次复制代码段? 谢谢。

visual-studio-code
1个回答
0
投票

请参阅Is there a way to use regex expression in vscode snippet prefix?但不是真的重复,因为该问题询问使用正则表达式(这将是非常有趣的)来构造片段前缀。

你可以把它放在一个片段ala中:

"Print to console": {
    "prefix": ["con", "cons", "conso", ….etc...],
    "body": [
        "console.log($1);"
    ]
}
© www.soinside.com 2019 - 2024. All rights reserved.