Variable: projectile-verbose

projectile-verbose is a customizable variable defined in projectile.el.

Value

t

Documentation

Whether to echo the messages Projectile emits without being asked.

This covers what Projectile says as a side effect of something else - caching a file you just opened, a background index that had something to report, a session file it had to skip. Commands you invoke still say what they did whatever this is set to: turning it off makes Projectile quieter, not mute.

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

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defcustom projectile-verbose t
  "Whether to echo the messages Projectile emits without being asked.

This covers what Projectile says as a side effect of something else -
caching a file you just opened, a background index that had something to
report, a session file it had to skip.  Commands you invoke still say
what they did whatever this is set to: turning it off makes Projectile
quieter, not mute."
  :group 'projectile
  :type 'boolean
  :package-version '(projectile . "0.12.0"))