Skip to content

Release v4.8.19

Compare
Choose a tag to compare
@github-actions github-actions released this 23 Jan 07:33

[V4.8.19]

  • feat: 新增光标移动快捷键,用于函数参数填写时使用(光标移动到下一行的末尾)
// 快捷键
{
  "command": "koroFileheader.table",
  "key": "alt+y", // window系统
  "mac": "cmd+y", // mac
  "linux": "meta+y", // linux
  "when": "editorTextFocus"
}

  • feat: 函数注释参数提取新增支持tsx
  • feat: typeParamOrder支持函数参数提取只显示函数参数,不展示type类型, 关联#397
"fileheader.configObj": {
    "typeParamOrder": "param"
}
// "typeParamOrder": "param"
/**
 * @description: 只有参数 没有类型
 * @param axiosMethods
 * @param apiLink
 * @param opts
 * @param fileName
 * @return {type}
 */
export const download = async (axiosMethods, apiLink, opts, fileName) => {};
  • docs: 文档更新。
  • fix: 修复箭头函数参数的提取错误, 关联#394