Function: projectile-find-file-of-kind-other-frame

projectile-find-file-of-kind-other-frame is an autoloaded, interactive and byte-compiled function defined in projectile.el.

Signature

(projectile-find-file-of-kind-other-frame)

Documentation

Jump to a project file of a chosen file kind and show it in another frame.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
;;;###autoload (autoload 'projectile-find-file-of-kind-other-window "projectile" nil t)
;;;###autoload (autoload 'projectile-find-file-of-kind-other-frame "projectile" nil t)
(projectile--define-display-variants projectile-find-file-of-kind ()
  "Jump to a project file of a chosen file kind and show it in another %s."
  (projectile--find-file-of-kind
   (projectile--read-file-kind "Find file of kind: ")
   #'find-file-other-window))