Function: projectile-project-info
projectile-project-info is an autoloaded, interactive and
byte-compiled function defined in projectile.el.
Signature
(projectile-project-info)
Documentation
Display info for current project.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
;;;###autoload
(defun projectile-project-info ()
"Display info for current project."
(interactive)
(message "Project: %s (%s, %s)"
(projectile-acquire-root)
(projectile-project-type)
(projectile-project-vcs)))