Function: cider-browse-ns--thing-at-point
cider-browse-ns--thing-at-point is a byte-compiled function defined in
cider-browse-ns.el.
Signature
(cider-browse-ns--thing-at-point)
Documentation
Get the thing at point.
Return a list of the type (ns or var) and the value, or nil if point is
not on a var or namespace node (e.g. on a group header or the controls).
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-browse-ns.el
(defun cider-browse-ns--thing-at-point ()
"Get the thing at point.
Return a list of the type (`ns' or `var') and the value, or nil if point is
not on a var or namespace node (e.g. on a group header or the controls)."
(when-let* ((node (cider-tree-view-node-at-point)))
(cider-tree-view-node-value node)))