Variable: projectile-dashboard-mode-abbrev-table

projectile-dashboard-mode-abbrev-table is a variable defined in projectile.el.

Value

#<obarray n=1>

Documentation

Abbrev table for projectile-dashboard-mode.

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))