Variable: projectile-default-src-directory
projectile-default-src-directory is a customizable variable defined in
projectile.el.
Value
"src/"
Documentation
The default value of a project's src-dir property.
It's used as a fallback in the case the property is not set for a project
type when projectile-toggle-between-implementation-and-test is used.
This variable was added, or its default value changed, in projectile version 2.6.0.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defcustom projectile-default-src-directory "src/"
"The default value of a project's src-dir property.
It's used as a fallback in the case the property is not set for a project
type when `projectile-toggle-between-implementation-and-test' is used."
:group 'projectile
:type 'string
:package-version '(projectile . "2.6.0"))