The great “useful snippet” topic

Have you implemented a useful snippet that others may benefit from? Post it here!

By kneel on Discord:

Turn the JIRA ticket on the current line into a JIRA link

---
tags: template
description: Turn the current line into a Jira URL
hooks.snippet:
  slashCommand: jira
  matchRegex: "(\\s)([A-Za-z]+-\\d+)(\\s)"
  command: "Turn into Jira URL"
  key: "Ctrl-q j"
---
$1[$2](https://COMPANY.atlassian.net/browse/$2)$3
1 Like