Function: forge-browse
forge-browse is an autoloaded, interactive and byte-compiled function
defined in forge-commands.el.
Signature
(forge-browse)
Documentation
Visit the thing at point using a browser.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-commands.el
;;;###autoload
(defun forge-browse ()
"Visit the thing at point using a browser."
(interactive)
(if-let ((target (forge--browse-target)))
(if (stringp target)
(browse-url target)
(browse-url (forge-get-url target))
(when (cl-typep target 'forge-topic)
(forge-topic-mark-read target)))
(user-error "Nothing to browse here")))