vs code 坑点和自定义代码片段html和vue

自定义代码片段

  • vscode自带的生成的html片段命令是 !+ tab / mac上直接回车
  • 首选项--用户代码片段输入html
  • 在html.json输入以下的片段代码
  • 建议使用是!h+tab
  • 2tab切换下一个$
  • 删除方式 文件标签右键 在finder中显示(mac)
  {
    "html:5": {
        "prefix": "!h",
        "body": [
            "",
            "",
            "",
                "\t",
                "\t",
                "\t",
                "\t",
            "",
                "\t",
            "",
                
            "",
                "\t",
            "",
        ],
        "description": "HTML5"
    }
}
  • vue.json
  • vue+tab
  {
    "Print to console": {
        "prefix": "vue",
        "body": [
            "",
            "",
            "",
            "",
            ""
        ],
        "description": "Log output to console"
    }
}

你可能感兴趣的:(vs code 坑点和自定义代码片段html和vue)