Function: projectile--known-project-root
projectile--known-project-root is a byte-compiled function defined in
projectile.el.
Signature
(projectile--known-project-root ROOT)
Documentation
Return ROOT in the canonical spelling used inside projectile-known-projects(var)/projectile-known-projects(fun).
Entries are stored abbreviated (via abbreviate-file-name) and with a
trailing slash so that membership and removal checks compare equal
regardless of how the root was originally obtained.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile--known-project-root (root)
"Return ROOT in the canonical spelling used inside `projectile-known-projects'.
Entries are stored abbreviated (via `abbreviate-file-name') and with a
trailing slash so that membership and removal checks compare equal
regardless of how the root was originally obtained."
(file-name-as-directory (abbreviate-file-name root)))