Function: treemacs--find-current-user-project
treemacs--find-current-user-project is a byte-compiled function
defined in treemacs-workspaces.el.
Signature
(treemacs--find-current-user-project)
Documentation
Find current project by calling treemacs--find-user-project-functions.
Source Code
;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-workspaces.el
(defun treemacs--find-current-user-project ()
"Find current project by calling `treemacs--find-user-project-functions'."
(declare (side-effect-free t))
(treemacs-block
(dolist (fun treemacs--find-user-project-functions)
(--when-let (funcall fun)
(treemacs-return it)))))