Variable: bug-reference-forge-alist

bug-reference-forge-alist is a variable defined in bug-reference.el.gz.

Value

(("github.com" github "https") ("gitea.com" gitea "https")
 ("codeberg.org" gitea "https") ("gitlab.com" gitlab "https")
 ("framagit.org" gitlab "https") ("salsa.debian.org" gitlab "https")
 ("sr.ht" sourcehut "https"))

Documentation

An alist of forge instances.

Each entry has the form (HOST-DOMAIN FORGE-TYPE PROTOCOL). HOST-DOMAIN is the host- and domain name, e.g., gitlab.com, salsa.debian.org, or sr.ht. FORGE-TYPE is the type of the forge, e.g., gitlab, gitea, sourcehut, or github. PROTOCOL is the protocol for accessing the forge's issue tracker, usually "https" but for self-hosted forge instances not accessible via the internet it might also be "http".

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/bug-reference.el.gz
(defvar bug-reference-forge-alist
  '(("github.com"       github    "https")
    ("gitea.com"        gitea     "https")
    ("codeberg.org"     gitea     "https")
    ("gitlab.com"       gitlab    "https")
    ("framagit.org"     gitlab    "https")
    ("salsa.debian.org" gitlab    "https")
    ("sr.ht"            sourcehut "https"))
  "An alist of forge instances.
Each entry has the form (HOST-DOMAIN FORGE-TYPE PROTOCOL).
HOST-DOMAIN is the host- and domain name, e.g., gitlab.com,
salsa.debian.org, or sr.ht.
FORGE-TYPE is the type of the forge, e.g., gitlab, gitea,
sourcehut, or github.
PROTOCOL is the protocol for accessing the forge's issue tracker,
usually \"https\" but for self-hosted forge instances not
accessible via the internet it might also be \"http\".")