Function: forge-pull-topic
forge-pull-topic is an autoloaded, interactive and byte-compiled
function defined in forge-commands.el.
Signature
(forge-pull-topic ARG1)
Documentation
Read a topic TYPE and NUMBER pull data about it from its forge.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-commands.el
;;;###autoload(autoload 'forge-pull-topic "forge-commands" nil t)
(transient-define-suffix forge-pull-topic (number)
"Read a topic TYPE and NUMBER pull data about it from its forge."
:inapt-if-not (lambda () (and (forge-get-repository :tracked?)
(forge--get-github-repository)))
(interactive
(list (read-number "Pull topic: "
(and$ (forge-current-topic) (oref $ number)))))
(forge--pull-topic (forge-get-repository :tracked) number))