美文网首页
Visual Studio Code (vscode)自定义用户

Visual Studio Code (vscode)自定义用户

作者: shenyoujian | 来源:发表于2019-10-17 11:34 被阅读0次

    IDEA用久了突然换了Visual Stidio Code (vscode)
    比如fori这样的快捷键就打不出代码块了
    查了查百度 找到了自定义用户代码块的方法:

    工具栏 > 文件 > 首选项 > 用户代码片段


    image image

    然后在弹出的搜索框中填写javascript.json 有提示 不用打全就行


    image

    打开配置文件javascript.json


    image

    这里面显示的就是编写代码块的例子

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

    print to 后面填的是你这个代码块的名字 随便取 符合命名规则就行

    prefix 冒号里填的是 在 Intellisense 中选择代码片段时将使用的前缀,即你要打出的快捷键

    body 冒号后面填的是你要定义的代码段的完整代码

    美元$符号+数字代表光标位置 即你打出代码段后光标所在的位置

    description 冒号后面填的是 这个代码段的描述 随便写就行

    下面附上自定义fori forj 快速打出for循环的代码:

        "Print out fori": {
            "prefix": "fori",
            "body": [
                "for (var i = 0; i < $1; i++) {",
                "   $2$0",
                "}"
            ],
            "description": "Output Loop 'fori'"
        }
    
    "Print out forj": {
            "prefix": "forj",
            "body": [
                "for (var j = 0; j < $1; j++) {",
                "   $2$0",
                "}"
            ],
            "description": "Output Loop 'forj'"
        }
    

    https://www.cnblogs.com/lzb1234/p/10848146.html

    相关文章

      网友评论

          本文标题:Visual Studio Code (vscode)自定义用户

          本文链接:https://www.haomeiwen.com/subject/lkymmctx.html