Function: forge-visit-this-topic
forge-visit-this-topic is an autoloaded, interactive and byte-compiled
function defined in forge-commands.el.
Signature
(forge-visit-this-topic &optional MENU)
Documentation
Visit the topic at point.
With prefix argument MENU, also show the topic menu.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-commands.el
;;;###autoload
(defun forge-visit-this-topic (&optional menu)
"Visit the topic at point.
With prefix argument MENU, also show the topic menu."
(interactive (list current-prefix-arg))
(forge-topic-setup-buffer (forge-topic-at-point))
(cond
((eq transient-current-command 'forge-topic-menu)
(setq forge--quit-keep-topic-menu t))
((or menu
(memq transient-current-command
'(forge-topics-menu forge-notifications-menu)))
(transient-setup 'forge-topic-menu))))