Variable: projectile-dashboard-link-files

projectile-dashboard-link-files is a customizable variable defined in projectile.el.

Value

("README" "CHANGELOG" "CONTRIBUTING" "LICENSE" "COPYING")

Documentation

Base names the dashboard offers as links when the project has them.

Matched case-insensitively and ignoring any extension, so "README" finds README.md\= as well as README.rst\=. The project's own marker file (package.json\=, Cargo.toml\=, ...) and its .projectile\= are always offered when present, without being listed here.

This variable was added, or its default value changed, in projectile version 3.4.0.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defcustom projectile-dashboard-link-files
  '("README" "CHANGELOG" "CONTRIBUTING" "LICENSE" "COPYING")
  "Base names the dashboard offers as links when the project has them.

Matched case-insensitively and ignoring any extension, so \"README\"
finds `README.md\\=' as well as `README.rst\\='.  The project\\='s own marker
file (`package.json\\=', `Cargo.toml\\=', ...) and its `.projectile\\=' are
always offered when present, without being listed here."
  :group 'projectile
  :type '(repeat string)
  :package-version '(projectile . "3.4.0"))