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-20260820.1509/projectile.el
;;;###autoload (autoload 'projectile-dired-other-window "projectile" nil t)
;;;###autoload (autoload 'projectile-dired-other-frame "projectile" nil t)
(projectile--define-display-variants projectile-dired (&optional arg)
  "Open `dired' at the root of the project in another %s.
With a prefix argument ARG, prompt for a known project to open in dired."
  (projectile--dired #'dired-other-window arg))