Variable: projectile-project-name

projectile-project-name is a customizable variable defined in projectile.el.

Value

nil

Documentation

If this value is non-nil, it will be used as project name.

It has precedence over function projectile-project-name-function.

This variable was added, or its default value changed, in projectile version 0.14.0.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defcustom projectile-project-name nil
  "If this value is non-nil, it will be used as project name.

It has precedence over function `projectile-project-name-function'."
  :group 'projectile
  :type 'string
  :safe (lambda (v) (or (null v)
                        (and (stringp v)
                             (not (string-blank-p v)))))
  :package-version '(projectile . "0.14.0"))