ghub-plus
ghub-plus copied to clipboard
Wrappers for GitHub API resources built on ghub
The examples in the readme seem identical to features now provided natively by `forge`.
``` ;; this fixes magithub and ghub+ (defun ghub--host-around-advice (proc &rest args) (if (not args) (setq args '(github))) (let ((res (apply proc args))) res)) (advice-add 'ghub--host :around #'ghub--host-around-advice) ```
in recent git versions of ghub, I have trouble using magithub/ghub+, because invocation of `(ghub--host)` fails when a parameter is absent. A fix is proposed in #15 .