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 other 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-20260310.858/projectile.el
;;;###autoload
(defun projectile-find-other-file-other-frame (&optional flex-matching)
  "Switch between files with different extensions in other frame.
Switch between files with the same name but different extensions in other 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'."
  (interactive "P")
  (projectile--find-other-file flex-matching
                               #'find-file-other-frame))