Function: projectile-dashboard--entry

projectile-dashboard--entry is a byte-compiled function defined in projectile.el.

Signature

(projectile-dashboard--entry LABEL TYPE ROOT &rest PROPERTIES)

Documentation

Insert an indented list entry button, padded to the value column.

LABEL, TYPE, ROOT and PROPERTIES are as in projectile-dashboard--button.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-dashboard--entry (label type root &rest properties)
  "Insert an indented list entry button, padded to the value column.
LABEL, TYPE, ROOT and PROPERTIES are as in `projectile-dashboard--button'."
  (insert "  ")
  (apply #'projectile-dashboard--button label type root properties)
  (insert (make-string (max 1 (- projectile-dashboard--label-width
                                 2 (length label)))
                       ?\s)))