Function: projectile-find-other-file-other-frame
projectile-find-other-file-other-frame is an autoloaded, interactive
and byte-compiled function defined in projectile.el.
Signature
(projectile-find-other-file-other-frame &optional FLEX-MATCHING)
Documentation
Switch between files with different extensions in other frame.
Switch between files with the same name but different extensions in
another frame. 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-20260820.1509/projectile.el
;;;###autoload (autoload 'projectile-find-other-file-other-window "projectile" nil t)
;;;###autoload (autoload 'projectile-find-other-file-other-frame "projectile" nil t)
(projectile--define-display-variants projectile-find-other-file (&optional flex-matching)
"Switch between files with different extensions in other %s.
Switch between files with the same name but different extensions in
another %s. 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'."
(projectile--find-other-file flex-matching #'find-file-other-window))