Variable: ghub-default-host-alist
ghub-default-host-alist is a variable defined in ghub.el.
Value
((github . "api.github.com") (gitlab . "gitlab.com/api/v4")
(gitea . "localhost:3000/api/v1") (gogs . "localhost:3000/api/v1")
(bitbucket . "api.bitbucket.org/2.0"))
Documentation
Alist of default hosts used when the respective FORGE.host is not set.
Source Code
;; Defined in ~/.emacs.d/elpa/ghub-20260401.1239/ghub.el
;;; Settings
(defvar ghub-default-host-alist
'((github . "api.github.com")
(gitlab . "gitlab.com/api/v4")
(gitea . "localhost:3000/api/v1")
(gogs . "localhost:3000/api/v1")
(bitbucket . "api.bitbucket.org/2.0"))
"Alist of default hosts used when the respective `FORGE.host' is not set.")