Function: projectile-dired-other-window
projectile-dired-other-window is an autoloaded, interactive and
byte-compiled function defined in projectile.el.
Signature
(projectile-dired-other-window &optional ARG)
Documentation
Open dired at the root of the project in another window.
With a prefix argument ARG, prompt for a known project to open in dired.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
;;;###autoload
(defun projectile-dired-other-window (&optional arg)
"Open `dired' at the root of the project in another window.
With a prefix argument ARG, prompt for a known project to open in dired."
(interactive "P")
(dired-other-window (if arg
(projectile-completing-read
"Dired in project: " (projectile-relevant-known-projects)
:caller 'projectile-read-project)
(projectile-acquire-root))))