Function: treemacs--update-commit-diff-in-every-project
treemacs--update-commit-diff-in-every-project is a byte-compiled
function defined in treemacs-git-commit-diff-mode.el.
Signature
(treemacs--update-commit-diff-in-every-project)
Documentation
Update diffs for every project in the current scope.
To be run when commt-diff-mode is activated or a treemacs buffer is created.
Source Code
;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-git-commit-diff-mode.el
(defun treemacs--update-commit-diff-in-every-project ()
"Update diffs for every project in the current scope.
To be run when commt-diff-mode is activated or a treemacs buffer is created."
(dolist (project (treemacs-workspace->projects (treemacs-current-workspace)))
(when (vc-git-responsible-p (treemacs-project->path project))
(treemacs--update-git-commit-diff project))))