Function: forge-pull-this-topic
forge-pull-this-topic is an autoloaded, interactive and byte-compiled
function defined in forge-commands.el.
Signature
(forge-pull-this-topic)
Documentation
Pull data about the topic at point from its forge.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-commands.el
;;;###autoload(autoload 'forge-pull-this-topic "forge-commands" nil t)
(transient-define-suffix forge-pull-this-topic ()
"Pull data about the topic at point from its forge."
:inapt-if-not #'forge--get-github-repository
:description "fetch"
(interactive)
(let ((topic (forge-current-topic t)))
(forge--pull-topic (forge-get-repository topic) topic)))