Function: cider-tree-view-next-node
cider-tree-view-next-node is an interactive and byte-compiled function
defined in cider-tree-view.el.
Signature
(cider-tree-view-next-node)
Documentation
Move point to the next node.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-tree-view.el
(defun cider-tree-view-next-node ()
"Move point to the next node."
(interactive)
(if-let* ((match (text-property-search-forward 'cider-tree-view-node nil nil t)))
(goto-char (prop-match-beginning match))
(user-error "No next node")))