Variable: projectile-buffers-filter-function
projectile-buffers-filter-function is a customizable variable defined
in projectile.el.
Value
nil
Documentation
A function used to filter the buffers in projectile-project-buffers.
The function should accept and return a list of Emacs buffers.
Two example filter functions are shipped by default -
projectile-buffers-with-file and
projectile-buffers-with-file-or-process.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defcustom projectile-buffers-filter-function nil
"A function used to filter the buffers in `projectile-project-buffers'.
The function should accept and return a list of Emacs buffers.
Two example filter functions are shipped by default -
`projectile-buffers-with-file' and
`projectile-buffers-with-file-or-process'."
:group 'projectile
:type 'function)