Variable: projectile-search-max-matches

projectile-search-max-matches is a customizable variable defined in projectile.el.

Value

5000

Documentation

Upper bound on how many matches a review buffer collects.

Applies to projectile-search-review and projectile-replace-review alike. When a search would exceed this, only the first that many matches are shown and a note is displayed.

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

Aliases

projectile-replace-max-matches (obsolete since 3.4.0)

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defcustom projectile-search-max-matches 5000
  "Upper bound on how many matches a review buffer collects.
Applies to `projectile-search-review' and `projectile-replace-review'
alike.  When a search would exceed this, only the first that many
matches are shown and a note is displayed."
  :group 'projectile
  :type 'natnum
  :package-version '(projectile . "3.2.0"))