zoukankan      html  css  js  c++  java
  • vscode 注释插件 korofileheader配置

    korofileheader 注释插件 设置里面找到 Custom Made 写入以下配置 
      "fileheader.customMade": {    //此为头部注释
            "Description": "",
            "Version": "2.0",
            "Autor": "lhl",
            "Date": "Do not edit",
            "LastEditors": "lhl",
            "LastEditTime": "Do not edit"
        },
        "fileheader.cursorMode": {  //此为函数注释
            "description":"",
            "param": "",
            "return": "",
            "author":"lhl"
        },
        "fileheader.configObj": {
            "autoAdd": true, // 默认开启自动添加头部注释,当文件没有设置头部注释时保存会自动添加
            "autoAlready": true, // 默认开启
            "prohibitAutoAdd": [
                "json",
                "md"
            ], // 禁止.json .md文件,自动添加头部注释
            "wideSame": false, // 设置为true开启
            "wideNum": 13 // 字段长度 默认为13
        }
    
    ctrl+alt+i,添加 文件头 注释
    ctrl+alt+t,添加 函数 注释
  • 相关阅读:
    MD5 Hashing in Java
    Caching in Presto
    ORC 文件存储格式
    Presto 性能优化点
    数据分页问题
    ES
    ES
    ES
    ES
    ES
  • 原文地址:https://www.cnblogs.com/lhl66/p/12582407.html
Copyright © 2011-2022 走看看