• 【VSCode】文件模板创建及使用.md


    背景

    最近使用VSCode学习Vue项目比较频繁,每次创建Vue文件都要手动写重复代码,特别麻烦,就上网查找自动生成代码的说明,结果发现VSCode有代码模板,怪怪,感觉发现新大陆了(low!)。

    配置

    1. 打开配置

      • 方式一:首先打开File->Preferences->Configure User Snippets配置(文件->首选项->配置用户片段):
        请添加图片描述
      • 方式二:或通过快捷键Ctrl+Shift+P打开命令面板,输入snippets,选择Configure User Snippets
        请添加图片描述
    2. 然后选择需要配置模板的对应文件类型(以vue模板为例,选择vue.json,其他模板同理为类型.json),如:
      请添加图片描述
      请添加图片描述

    3. 配置自定义代码模板:

      • "Print to console" 代码模板内容
      • "prefix" 代码模板前缀,在对应类型中使用该前缀可触发根据代码模板生成代码
      • "body" 代码模板数据,实际是字符串数组
      • $1,$2,$3 代码模板变量,根据变量顺序从1开始,$0为最后一个变量,会在代码生成后输入,根据次序代表变量顺序
      • ${1:default} 代码模板变量默认值,当不输入时以默认值显示,否则显示输入值
    {
        {
    	// Place your snippets for vue 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"
    	// }
        "Print to console":{
    		"prefix": "vue",
    		"body": [
    			"",
    			"",
    		]
    	}
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34

    使用

    1. 配置完成后,在VSCode中输入模板名称,按tab键即可生成模板代码,如下图所示:
      请添加图片描述
      请添加图片描述
  • 相关阅读:
    【Python】五、程序循环结构
    Git的常用操作命令有哪些
    原生js之script基本属性
    新版本idea中使用springboot 国际化 Resource Bundle不显示
    CentOS7安装telnet服务
    C++之template的简单介绍
    R语言使用DALEX包对h2o包构建的机器学习模型进行解释分析:总结及实战
    manjaro系统无法安装
    C语言——指针进阶
    电脑黑屏按什么键恢复?只需要3个键就可以解决黑屏
  • 原文地址:https://blog.csdn.net/Sheldon74/article/details/132690545