Function: cider-inspector-open-thing-at-point
cider-inspector-open-thing-at-point is an interactive and
byte-compiled function defined in cider-inspector.el.
Signature
(cider-inspector-open-thing-at-point)
Documentation
Opens the thing at point if found, without prompting.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-inspector.el
(defun cider-inspector-open-thing-at-point ()
"Opens the thing at point if found, without prompting."
(interactive)
(if-let ((url (thing-at-point 'url)))
(browse-url url)
(if-let ((filename (thing-at-point 'filename)))
(find-file filename))))