Function: treemacs-next-project
treemacs-next-project is an interactive and byte-compiled function
defined in treemacs-interface.el.
Signature
(treemacs-next-project)
Documentation
Move to the next project root node.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-interface.el
(defun treemacs-next-project ()
"Move to the next project root node."
(interactive)
(-let [pos (treemacs--next-project-pos)]
(if (or (= pos (point))
(= pos (point-max)))
(treemacs-pulse-on-failure "There is no next project to move to.")
(goto-char pos)
(treemacs--maybe-recenter treemacs-recenter-after-project-jump))))