Variable: projectile-globally-ignored-buffers

projectile-globally-ignored-buffers is a customizable variable defined in projectile.el.

Value

("*scratch*" "*lsp-log*")

Documentation

A list of buffer-names ignored by projectile.

You can use either exact buffer names or regular expressions. If a buffer is in the list projectile will ignore it for functions working with buffers.

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
(defcustom projectile-globally-ignored-buffers
  '("*scratch*"
    "*lsp-log*")
  "A list of buffer-names ignored by projectile.

You can use either exact buffer names or regular expressions.
If a buffer is in the list projectile will ignore it for
functions working with buffers."
  :group 'projectile
  :type '(repeat string)
  :package-version '(projectile . "0.12.0"))