Function: cider-tree-view--goto-node

cider-tree-view--goto-node is a byte-compiled function defined in cider-tree-view.el.

Signature

(cider-tree-view--goto-node NODE)

Documentation

Move point to the line rendering NODE, if it is on screen.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-tree-view.el
(defun cider-tree-view--goto-node (node)
  "Move point to the line rendering NODE, if it is on screen."
  (goto-char (point-min))
  (when-let* ((match (text-property-search-forward 'cider-tree-view-node node #'eq)))
    (goto-char (prop-match-beginning match))))