Function: cider-browse-ns-find-at-point
cider-browse-ns-find-at-point is an interactive and byte-compiled
function defined in cider-browse-ns.el.
Signature
(cider-browse-ns-find-at-point)
Documentation
Find the definition of the thing at point.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-browse-ns.el
(defun cider-browse-ns-find-at-point ()
"Find the definition of the thing at point."
(interactive)
(when-let* ((thing (cider-browse-ns--thing-at-point)))
(if (eq (car thing) 'ns)
(cider-find-ns nil (cadr thing))
(cider-find-var current-prefix-arg (cadr thing)))))