赞
踩
1、安装插件KoroFileHeader
2、左下角选择管理---设置---输入"fileheader"---点击"在setting.json中编辑"
3、把下面的代码放到json文件父对象中
- // 文件头部注释
- "fileheader.customMade": {
- "Descripttion":"",
- "version":"X3版本",
- "Author":"吴胭脂",
- "Date":"Do not edit",
- "LastEditors":"吴胭脂",
- "LastEditTime":"Do not Edit"
- },
- //函数注释
- "fileheader.cursorMode": {
- "name":"",
- "test":"test font",
- "msg":"",
- "param":"",
- "return":""
- }
我放进去之后的位置是:
- {
- "editor.fontSize": 16,
- "files.exclude": {
- "**/__pycache__": true
- },
- "[html]": {},
- "files.associations": {
- "*.vue": "html"
- },
- // 文件头部注释
- "fileheader.customMade": {
- "Descripttion":"",
- "version":"X3版本",
- "Author":"吴胭脂",
- "Date":"Do not edit",
- "LastEditors":"吴胭脂",
- "LastEditTime":"Do not Edit"
- },
- //函数注释
- "fileheader.cursorMode": {
- "name":"",
- "test":"test font",
- "msg":"",
- "param":"",
- "return":""
- }
- }
二、设置之后的结果
快捷键:ctrl + alt + i 生成头部注释
- /*
- * @Descripttion:有关用户和登录注册的api
- * @version: X3版本
- * @Author: ***
- * @Date: 2019-06-11 14:59:43
- * @LastEditors: ***
- * @LastEditTime: 2019-06-11 16:23:20
- */
快捷键:ctrl + alt + t 生成函数注释
- /**
- * @name:
- * @test: test font
- * @msg:
- * @param {type}
- * @return:
- */
在原博客地址的基础上整理的,表示感谢:https://www.cnblogs.com/suRimn/p/10450372.html
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。