Function: projectile-find-implementation-or-test-other-frame

projectile-find-implementation-or-test-other-frame is an autoloaded, interactive and byte-compiled function defined in projectile.el.

Signature

(projectile-find-implementation-or-test-other-frame)

Documentation

Open matching implementation or test file in other frame.

See the documentation of projectile--find-matching-file and projectile--find-matching-test for how implementation and test files are determined.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
;;;###autoload
(defun projectile-find-implementation-or-test-other-frame ()
  "Open matching implementation or test file in other frame.

See the documentation of `projectile--find-matching-file' and
`projectile--find-matching-test' for how implementation and test files
are determined."
  (interactive)
  (find-file-other-frame
   (projectile-find-implementation-or-test (buffer-file-name))))