Function: project-dired
project-dired is an autoloaded, interactive and byte-compiled function
defined in project.el.gz.
Signature
(project-dired)
Documentation
Start Dired in the current project's root.
Probably introduced at or before Emacs version 28.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/project.el.gz
;;;###autoload
(defun project-dired ()
"Start Dired in the current project's root."
(interactive)
(dired (project-root (project-current t))))