1、配置注释默认参数
在VSCode的settings里搜索Custom Made,然后在settings.json文件中添加如下代码
// 以下为新添加 "fileheader.customMade": { //此为头部注释 "Version": "1.0", "Autor": "myname", "Date": "Do not edit", "LastEditors": "myname", "LastEditTime": "Do not edit" }, "fileheader.cursorMode": { //此为函数注释 "param": "", "return": "", "author": "myname", }, "fileheader.configObj": { "autoAdd": true, // 默认开启自动添加头部注释,当文件没有设置头部注释时保存会自动添加 "autoAlready": true, // 默认开启 "prohibitAutoAdd": [ "json", "md" ], // 禁止.json .md文件,自动添加头部注释 "wideSame": false, // 设置为true开启 "wideNum": 13 // 字段长度 默认为13 }
添加后如下图
2、使用
文件头注释自动生成(ctrl+alt+i)
函数注释自动生成(ctrl+alt+t)