Function: projectile-doctor--render-no-project

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

Signature

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

Documentation

Render the no-project report for DATA.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-doctor--render-no-project (data)
  "Render the no-project report for DATA."
  (projectile-doctor--section "Project")
  (projectile-doctor--field "directory" (plist-get data :dir))
  (projectile-doctor--field "root" "none - not inside a project")
  (projectile-doctor--list-field
   "root functions tried"
   (mapcar #'symbol-name projectile-project-root-functions))
  (insert (format "
None of the functions above found a project marker at or above that
directory.  To make it a project, create a `%s' file in it (an
empty one will do) or put it under version control.

If you did that already and nothing changed, run
`projectile-invalidate-cache' first - the \"not a project\" answer is
cached too.
" projectile-dirconfig-file)))