vscode怎么创建自定义代码片段


本文摘自PHP中文网,作者V,侵删。

这里以创建一个 javascript 代码片段为例:

1、首先可以打开一个javascript的文件(或在当前打开文件中)按快捷键Ctrl+Shift+P打开命令输入 snippet : (也可以点击文件=>首选项=>用户代码片段)

6861c683582623b702ebe72d66316b0.png

2、选择选项后会出现一个语言列表用以选择给哪种语言创建代码段。这里以设置javascript的Console.WriteLine代码段为例,其他语言方法是一样的。

选择javascript后会自动打开一个JSON格式的配置文件

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

{

    // Place your snippets for javascript here. Each snippet is defined under a snippet name and has a prefix, body and

    // description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:

    // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the

    // same ids are connected.

    // Example:

    // "Print to console": {

    //  "prefix": "log",

    //  "body": [

    //      "console.log('$1');",

    //      "$2"

    //  ],

    //  "description": "Log output to console"

    // },

}

根据自身需要修改内容如下:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

{

    // Place your snippets for javascript here. Each snippet is defined under a snippet name and has a prefix, body and

    // description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:

    // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the

    // same ids are connected.

    // Example:

    "Page Header": {

        "prefix": "ducx",

        "body": [

            "/**",

            " * $1",

            " * ",

            " * @author ducx",

            " * @created $CURRENT_YEAR/$CURRENT_MONTH/$CURRENT_DATE $CURRENT_HOUR:$CURRENT_MINUTE:$CURRENT_SECOND",

            " */",

            "$2"

        ],

        "description": "page header"

    }

}

保存之后,打开一个 js 文件,输入前缀 ducx 出现快捷提示窗后回车,此时已经生成了我们自定义的代码片段结构,依次按 tab 。

1

2

3

4

5

6

/**

 *

 *

 * @author ducx

 * @created 2018/08/31 17:08:37

 */

推荐教程:vscode教程

以上就是vscode怎么创建自定义代码片段的详细内容,更多文章请关注木庄网络博客

相关阅读 >>

vsCode如何实现新建文件自动添加作者注释

vsCode怎么改变选中字体的颜色高亮

vsCode es6语法报错

vsCode是啥

vsCode中tab键生成不了html

vsCode搭建java开发环境

vsCode如何单步调试

聊聊给vsCode编辑器设置图片背景的方法

详解vsCode中如何更简单、有效地调试node.js程序!!

vsCode用不了cmd怎么解决

更多相关阅读请进入《vsCode》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...