Function: projectile-dashboard--button

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

Signature

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

Documentation

Insert a button labelled LABEL of button TYPE for the project at ROOT.

PROPERTIES are any additional button properties, as a plist.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-dashboard--button (label type root &rest properties)
  "Insert a button labelled LABEL of button TYPE for the project at ROOT.
PROPERTIES are any additional button properties, as a plist."
  (apply #'insert-text-button label
         'type type 'projectile-root root properties))