koroFileHeader
需要先去扩展中下载koroFileHeader插件,然后设置中搜索fileheader,如下图: 这里面包含config Obj、Cursor Mode、Cuetom Made的配置文件,需要我们自己添加一些配置文件然后就可以实现自动注释,点击任意一个settings.json进去。
Fileheader文件配置
在fileheader文件中需要添加如下两个文件,分别是函数注释和头部注释:
"fileheader.cursorMode": {
"description": "",
"param": "",
"return": "",
},
"fileheader.customMade": {
"Author": "Wujiahuo",
"Date": "Do not edit",
"LastEditors": "OBKoro1",
"LastEditTime": "Do not edit",
"FilePath": "Do not edit",
"Description": "",
"custom_string_obkoro1_copyright": "Copyright (c) ${now_year} by Wujiahuo/bzlrobot, All Rights Reserved. "
}
}
插入图片注释则是在fileheader.Config Obj中,目前我只知道头部插入携带,单独的插入没有找到资料:
"fileheader.configObj": {
"designAddHead": false,
"headDesignName": "totemDragon",
"headDesign": false,
头部注释快捷键为: window:ctrl+win+i mac:ctrl+cmd+i linux: ctrl+meta+i Ubuntu: ctrl+super+i 函数注释快捷键为: window:ctrl+win+t mac:ctrl+cmd+t linux: ctrl+meta+t Ubuntu: ctrl+super+t 函数注释光标移动到下一行,快速添加函数参数描述 window: win+y mac: cmd+y linux: meta+y
|