gpt4 book ai didi

visual-studio-code - 如何在 VS Code 中自定义多个片段?

转载 作者:行者123 更新时间:2023-12-04 03:00:29 24 4
gpt4 key购买 nike

我在 VS 代码中自定义了一个片段。代码如下:

"angular2-logger": {
"prefix": "log",
"body": [
"this.log.log('$1');"
],
"description": "使用angular2-logger的log功能"
}

但是如果想添加更多片段怎么办?谁能给我一个演示?

最佳答案

只需在括号后添加一个逗号并创建下一个片段。

例如:

"angular2-logger": {
"prefix": "log",
"body": [
"this.log.log('$1');"
],
"description": "使用angular2-logger的log功能"
},
"Console.log": {
"prefix": "log",
"body": [
"console.log($1);"
],
"description": "Console.log"
}

关于visual-studio-code - 如何在 VS Code 中自定义多个片段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49648028/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com