korofileheader 注释插件 设置里面找到 Custom Made 写入以下配置
// file header
"fileheader.customMade": { // 头部注释
"Author": "zzh",
"Date": "Do not edit",
"LastEditors": "zzh",
"LastEditTime": "Do not edit",
"Description": "",
"FilePath": "Do not edit" // 增加此项配置即可
},
"fileheader.cursorMode": { // 函数注释
"description": "",
"param": "params",
"return": ""
},
"fileheader.configObj": {
"autoAdd": true, // 默认开启自动添加头部注释,当文件没有设置头部注释时保存会自动添加
"autoAlready": true, // 默认开启
"prohibitAutoAdd": [
"json",
"md"
], // 禁止.json .md文件,自动添加头部注释
"wideSame": false, // 设置为true开启
"wideNum": 13 // 字段长度 默认为13
}
ctrl+win+i,添加 文件头 注释
ctrl+win+t,添加 函数 注释