Function: forge-browse-topic

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

Signature

(forge-browse-topic TOPIC)

Documentation

Read a TOPIC and visit it using a browser.

By default only offer open topics but with a prefix argument also offer closed topics.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-commands.el
;;;###autoload
(defun forge-browse-topic (topic)
  "Read a TOPIC and visit it using a browser.
By default only offer open topics but with a prefix argument
also offer closed topics."
  (interactive (list (forge-read-topic "Browse topic")))
  (forge--browse-topic topic))