{"id":16102381,"url":"https://github.com/sshaw/issue-link","last_synced_at":"2026-01-20T13:01:55.328Z","repository":{"id":136718090,"uuid":"132295589","full_name":"sshaw/issue-link","owner":"sshaw","description":"Get the link to JIRA/Tracker/GitHub issues. Turn bug/feature/issue IDs into links.","archived":false,"fork":false,"pushed_at":"2018-05-28T20:28:59.000Z","size":16,"stargazers_count":4,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-07T16:52:16.577Z","etag":null,"topics":["bitbucket","bug-tracker","emacs","github","gitlab","issue-tracker","jira","jira-issue","pivotal-tracker","urls"],"latest_commit_sha":null,"homepage":"","language":"Emacs Lisp","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sshaw.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-05-06T00:53:09.000Z","updated_at":"2022-03-30T03:23:09.000Z","dependencies_parsed_at":"2023-07-03T09:00:44.752Z","dependency_job_id":null,"html_url":"https://github.com/sshaw/issue-link","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sshaw/issue-link","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sshaw%2Fissue-link","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sshaw%2Fissue-link/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sshaw%2Fissue-link/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sshaw%2Fissue-link/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sshaw","download_url":"https://codeload.github.com/sshaw/issue-link/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sshaw%2Fissue-link/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28603404,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T12:01:53.233Z","status":"ssl_error","status_checked_at":"2026-01-20T12:01:46.545Z","response_time":117,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bitbucket","bug-tracker","emacs","github","gitlab","issue-tracker","jira","jira-issue","pivotal-tracker","urls"],"created_at":"2024-10-09T18:53:41.883Z","updated_at":"2026-01-20T13:01:55.303Z","avatar_url":"https://github.com/sshaw.png","language":"Emacs Lisp","funding_links":[],"categories":[],"sub_categories":[],"readme":"# issue-link\n\nGet the link to JIRA/Tracker/GitHub etc... bugs, features \u0026 issues. Turn their IDs into buttons.\n\n## Usage\n\n`issue-link` has built in support for:\n\n* GitHub\n* Bitbucket\n* GitLab\n\nOther services [must be configured](#adding-issue-id-formats).\n\n### Turning Issue IDs Into Buttons\n\nTo turn issue IDs into buttons that link to the issue activate `issue-link-mode`:\n\n```el\n;; Or wherever you want issue IDs to be turned into buttons\n(add-hook 'prog-mode-hook 'issue-link-mode)\n```\n\nButtons will be created from text matching `issue-link-issue-regexp`\nand `issue-link-issue-alist`.\n\nURLs are created by matching text against patterns in `issue-link-issue-alist` or, if none matches,\nby using the current branch's remote (currently only Git is supported).\n\n### Getting an Issue's Link\n\nTo get the link for an issue or the issue associated with the current branch run `M-x issue-link`\nor bind it to the keys of your choice e.g., `(global-set-key (kbd \"C-c i\") 'issue-link)`.\n\nThe command will add the link to the kill ring and/or open the issue in your browser. To control this\nbehavior see `issue-link-kill` and `issue-link-open-in-browser`.\n\nWith a prefix argument or, if `issue-link-issue-alist` is not set, prompt for an issue ID.\n\n### Adding Issue ID Formats\n\nTo support issues in systems like JIRA and Pivotal Tracker you must configure `issue-link-issue-alist`.\nThe first element is a regexp to match an issue ID and the second is the URL where the issue\ncan be viewed. `%s` will be replaced with the matched ID:\n\n```el\n(add-to-list 'issue-link-issue-alist\n             '(\"\\\\\u003cKEY-[[:word:]]+\\\\\u003e\" \"https://your-org.atlassian.net/browse/%s\"))\n\n(add-to-list 'issue-link-issue-alist\n             '(\"#[0-9]+\\\\\u003e\" \"https://www.pivotaltracker.com/story/show/%s\"))\n\n```\n\n## Org Mode\n\n`issue-link` can add an Org mode link type of `issue:`. This allows you to insert\nissue links using `org-insert-link`. To use this add the following function call to your config:\n\n```el\n(issue-link-add-org-link-type)\n```\n\nThis can also be called interactively.\n\n## See Also\n\n### Emacs\n\n* [git-link](https://github.com/sshaw/git-link) - get the GitHub/Bitbucket/GitLab/... URL for a buffer location\n* [button-lock](https://github.com/rolandwalker/button-lock) - easily create clickable \u0026 mouseable text\n* [build-status](https://github.com/sshaw/build-status) - monitors and shows a buffer's build status in the mode line\n* [copy-as-format](https://github.com/sshaw/copy-as-format) - copy buffer locations as GitHub/Slack/JIRA/HipChat/... formatted code\n\n### Google Chrome\n\n* [Jirafy](https://chrome.google.com/webstore/detail/jirafy/npldkpkhkmpnfhpmeoahhakbgcldplbj) - linkifies JIRA ticket numbers on select pages\n* [Quick JIRA](https://chrome.google.com/webstore/detail/quick-jira/acdnmaeifljongleeegkkfnfcopblokj) - quickly open a JIRA issue\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsshaw%2Fissue-link","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsshaw%2Fissue-link","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsshaw%2Fissue-link/lists"}