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-20260414.1619/cider-browse-ns.el
(defun cider-browse-ns-find-at-point ()
"Find the definition of the thing at point."
(interactive)
(let* ((thing (cider-browse-ns--thing-at-point))
(type (car thing))
(value (cadr thing)))
(if (eq type 'ns)
(cider-find-ns nil value)
(cider-find-var current-prefix-arg value))))