Variable: projectile-max-file-buffer-count

projectile-max-file-buffer-count is a customizable variable defined in projectile.el.

Value

nil

Documentation

Maximum number of file buffers per project that are kept open.

If the value is nil, there is no limit to the opened buffers count.

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

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defcustom projectile-max-file-buffer-count nil
  "Maximum number of file buffers per project that are kept open.

If the value is nil, there is no limit to the opened buffers count."
  :group 'projectile
  :type 'integer
  :package-version '(projectile . "2.2.0"))