Function: cider-browse-ns-operate-at-point
cider-browse-ns-operate-at-point is an interactive and byte-compiled
function defined in cider-browse-ns.el.
Signature
(cider-browse-ns-operate-at-point)
Documentation
Expand browser according to thing at current point.
If the thing at point is a ns it will be browsed, and if the thing at point is some var - its documentation will be displayed.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-browse-ns.el
(defun cider-browse-ns-operate-at-point ()
"Expand browser according to thing at current point.
If the thing at point is a ns it will be browsed,
and if the thing at point is some var - its documentation will
be displayed."
(interactive)
(when-let* ((thing (cider-browse-ns--thing-at-point)))
(if (eq (car thing) 'ns)
(cider-browse-ns (cadr thing))
(cider-doc-lookup (cadr thing)))))