Function: projectile-dashboard--render-no-project

projectile-dashboard--render-no-project is a byte-compiled function defined in projectile.el.

Signature

(projectile-dashboard--render-no-project DATA)

Documentation

Render the no-project dashboard for DATA.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-dashboard--render-no-project (data)
  "Render the no-project dashboard for DATA."
  (projectile-dashboard--section "Project")
  (projectile-dashboard--field "directory" (plist-get data :dir))
  (projectile-dashboard--field "root" "none - not inside a project")
  (insert (format "
There's no project around that directory, so there's nothing to show.
Create a `%s' file in it (an empty one will do) or put it under version
control, then press `g' to try again.

`M-x projectile-doctor' lists the root functions that were tried and
explains why none of them claimed the directory.
" projectile-dirconfig-file)))