Function: forge-read-issue

forge-read-issue is a byte-compiled function defined in forge-issue.el.

Signature

(forge-read-issue PROMPT)

Documentation

Read an active issue with completion using PROMPT.

Open, unread and pending issues are considered active. Default to the current issue, even if it isn't active.

While completion is in progress, + (forge-read-topic-lift-limit) lifts the limit, extending the completion candidates to include all issues.

If forge-limit-topic-choices is nil, then all candidates can be selected from the start.

Source Code

;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-issue.el
;;; Read

(defun forge-read-issue (prompt)
  "Read an active issue with completion using PROMPT.

Open, unread and pending issues are considered active.
Default to the current issue, even if it isn't active.

\\<forge-read-topic-minibuffer-map>While completion is in \
progress, \\[forge-read-topic-lift-limit] lifts the limit, extending
the completion candidates to include all issues.

If `forge-limit-topic-choices' is nil, then all candidates
can be selected from the start."
  (forge--read-topic prompt
                     #'forge-current-issue
                     (forge--topics-spec :type 'issue :active t)
                     (forge--topics-spec :type 'issue :active nil
                                         :state nil :limit nil)))