Visual Studio Code 设置文件头部添加作者、日期和函数注释

step1:安装插件KoroFileHeader

step2:左下角选择管理—设置—输入"fileheader"—点击"在setting.json中编辑"

step3:添加下面的代码到json文件中

// 文件头部注释
"fileheader.customMade": {
    "Descripttion":"",
    "version":"",
    "Author":"CoderXZ",
    "Date":"Do not edit",
    "LastEditors":"CoderXZ",
    "LastEditTime":"Do not Edit"
},
//函数注释
"fileheader.cursorMode": {
    "name":"",
    "msg":"",
    "param":"",
    "return":""
},

自动为函数生成多行注释
安装库 autoDocstring

你可能感兴趣的:(生活与工作,vscode,chrome,前端)