Function: projectile-find-other-file-other-window
projectile-find-other-file-other-window is an autoloaded, interactive
and byte-compiled function defined in projectile.el.
Signature
(projectile-find-other-file-other-window &optional FLEX-MATCHING)
Documentation
Switch between files with different extensions in other window.
Switch between files with the same name but different extensions in other
window. With FLEX-MATCHING, match any file that contains the base name of
current file. Other file extensions can be customized with the variable
projectile-other-file-alist.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
;;;###autoload
(defun projectile-find-other-file-other-window (&optional flex-matching)
"Switch between files with different extensions in other window.
Switch between files with the same name but different extensions in other
window. With FLEX-MATCHING, match any file that contains the base name of
current file. Other file extensions can be customized with the variable
`projectile-other-file-alist'."
(interactive "P")
(projectile--find-other-file flex-matching
#'find-file-other-window))