Function: projectile-find-other-file
projectile-find-other-file is an autoloaded, interactive and
byte-compiled function defined in projectile.el.
Signature
(projectile-find-other-file &optional FLEX-MATCHING)
Documentation
Switch between files with the same name but different extensions.
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
;;; Interactive commands
;;;###autoload
(defun projectile-find-other-file (&optional flex-matching)
"Switch between files with the same name but different extensions.
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))