Function: projectile--find-implementation-or-test-in

projectile--find-implementation-or-test-in is a byte-compiled function defined in projectile.el.

Signature

(projectile--find-implementation-or-test-in FF-VARIANT)

Documentation

Open the matching implementation or test file using FF-VARIANT.

FF-VARIANT is a find-file-like command; passing find-file-other-window or find-file-other-frame yields the corresponding display variants.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile--find-implementation-or-test-in (ff-variant)
  "Open the matching implementation or test file using FF-VARIANT.
FF-VARIANT is a `find-file'-like command; passing
`find-file-other-window' or `find-file-other-frame' yields the
corresponding display variants."
  (funcall ff-variant (projectile-find-implementation-or-test (buffer-file-name))))