Note #2025-04-15-001

Interactions

  • Pablo González Carrizo

    I'm still figuring out how to expose this through the configuration. It's on my TODO list, but I’m not sure when I’ll get to it. In the meantime, here’s some information about how it currently works: - The jira-fields variable holds the data for all custom fields. It's automatically populated when you open the issues list. - The jira-issues-fields variable (defined in jira-utils.el) maps the paths for all fields in use—both custom and standard. You can find examples of custom fields there, each using a formatter function defined in jira-fmt.el. For example: ``` (:cost-center . ((:path . (fields (custom "Cost center"))) (:columns . 10) (:name . "Cost Center") (:formatter . jira-fmt-cost-center))) ``` - Finally, you can include that field in the list of fields shown in the issues list, which is already a configurable parameterjira-issues-table-fields`

    Reply
  • Srijan Choudhary

    Thanks, will try it out. Any similar workarounds for issue details pages?

    Reply