vscode自定义代码片段
程序员文章站
2022-03-17 14:09:15
...
启用编辑时tab键
如图,首选项->设置中搜索“edtior.tab”,打开 “Tab Completion”
打开首选项的 user snippets
然后选择目标文件的后缀名
然后会打开一个配置文件,
使用snippets语法编辑,
其中“prefix”字段是快捷用语,
“body”字段是内容,
如下:
"hexo template":{
"prefix": "hexomd",
"body": [
"---",
"title: 标题",
"date: 2019-09-01 12:08:25",
"tags: 标签",
"categories: 分类",
"---",
"# 标题",
"------",
],
"description": "hexo template"
}
最终输入”hexomd“就会打开模块,提高效率