说明
很多同学说需要下载一些插件才可以,其实并不需要,只需要在设置中设置 fileheader.customMade 和 fileheader.cursorMode 就可以了。
一下是mac 环境,快捷键因系统不同有差异。
- ?fileheader.customMade (control + command + i)
? ? ? ? 设置文件的header
- fileheader.cursorMode (control + command + t)
? ? ? ? 设置函数的注释头
例子
{
"editor.fontSize": 14,
"editor.formatOnType": true,
"fileheader.customMade": {
"Author": "fengyun",
"Date": "Do not edit",
"LastEditTime": "Do not edit",
"Description": "file content"
},
"fileheader.cursorMode": { //此为函数注释
"description":"",
"param": "",
"return": "",
"author":"fengyun"
}
}
找到他
防止找不到,我截了图。
点击设置,在搜索框直接输入author, 选中红框所示 Fileheader: Custom Made , 在setting.json 中设置就好了,command + s 保存。
结果展示
###
# @Author: fengyun
# @Date: 2021-10-08 21:37:26
# @LastEditTime: 2021-10-08 21:37:26
# @Description: file content
###
###
# @description:
# @param {*}
# @return {*}
# @author: fengyun
###
?
|