Variable: projectile-dashboard-mode-hook
projectile-dashboard-mode-hook is a variable defined in projectile.el.
Value
nil
Documentation
Hook run after entering Projectile-Dashboard mode.
No problems result if this variable is not bound.
add-hook automatically binds it. (This is true for all hook variables.)
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(define-derived-mode projectile-dashboard-mode special-mode "Projectile-Dashboard"
"Major mode for the `projectile-dashboard' buffer, read-only.
The files, tasks, lifecycle commands and the current branch are buttons.
RET acts on the one at point; \\<projectile-dashboard-mode-map>\\[forward-button] and \\[backward-button] (also `n' and `p')
move between them. \\[revert-buffer] refreshes the dashboard and \\[quit-window] buries it.
\\{projectile-dashboard-mode-map}"
(setq-local revert-buffer-function
(lambda (&rest _)
(projectile-dashboard--refresh
projectile-dashboard--directory)))
(projectile--report-setup-outline))