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-20260414.1619/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)
(let* ((thing (cider-browse-ns--thing-at-point))
(type (car thing))
(value (cadr thing)))
(if (eq type 'ns)
(cider-browse-ns value)
(cider-doc-lookup value))))