Function: forge-visit-pullreq

forge-visit-pullreq is an autoloaded, interactive and byte-compiled function defined in forge-commands.el.

Signature

(forge-visit-pullreq PULL-REQUEST)

Documentation

Read a PULL-REQUEST and visit it.

By default only offer active pull-requests for completion. With a prefix argument offer all topics. While completion is in progress,
+ (forge-read-topic-lift-limit) lifts the limitation to active pull-requests.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-commands.el
;;;###autoload
(defun forge-visit-pullreq (pull-request)
  "Read a PULL-REQUEST and visit it.
By default only offer active pull-requests for completion.  With a
prefix argument offer all topics.  While completion is in progress,
\\<forge-read-topic-minibuffer-map>\\[forge-read-topic-lift-limit] \
lifts the limitation to active pull-requests."
  (interactive (list (forge-read-pullreq "View pull-request")))
  (forge-topic-setup-buffer (forge-get-pullreq pull-request)))