Function: projectile-find-file-dwim-other-window

projectile-find-file-dwim-other-window is an autoloaded, interactive and byte-compiled function defined in projectile.el.

Signature

(projectile-find-file-dwim-other-window &optional INVALIDATE-CACHE)

Documentation

Jump to a project's files based on context, opening them in another window.

With a prefix arg INVALIDATE-CACHE invalidates the cache first.

See projectile-find-file-dwim for the details of how the file at point is used to narrow down the candidates.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
;;;###autoload (autoload 'projectile-find-file-dwim-other-window "projectile" nil t)
;;;###autoload (autoload 'projectile-find-file-dwim-other-frame "projectile" nil t)
(projectile--define-display-variants projectile-find-file-dwim (&optional invalidate-cache)
  "Jump to a project's files based on context, opening them in another %s.

With a prefix arg INVALIDATE-CACHE invalidates the cache first.

See `projectile-find-file-dwim' for the details of how the file at
point is used to narrow down the candidates."
  (projectile--find-file-dwim invalidate-cache #'find-file-other-window))