Variable: projectile-mode-line-prefix

projectile-mode-line-prefix is a customizable variable defined in projectile.el.

Value

" Projectile"

Documentation

Mode line lighter prefix for Projectile.

It's used by projectile-default-mode-line when using dynamic mode line lighter and is the only thing shown in the mode line otherwise.

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

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
;;; Projectile Minor mode

(defcustom projectile-mode-line-prefix
  " Projectile"
  "Mode line lighter prefix for Projectile.
It's used by `projectile-default-mode-line'
when using dynamic mode line lighter and is the only
thing shown in the mode line otherwise."
  :group 'projectile
  :type 'string
  :package-version '(projectile . "0.12.0"))