Function: forge-visit-topic

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

Signature

(forge-visit-topic TOPIC)

Documentation

Read a TOPIC and visit it.

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

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-commands.el
;;; Visit

;;;###autoload
(defun forge-visit-topic (topic)
  "Read a TOPIC and visit it.
By default only offer active topics 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 topics."
  (interactive (list (forge-read-topic "View topic")))
  (forge-topic-setup-buffer (forge-get-topic topic)))