Variable: projectile-search-scan-chunk-size

projectile-search-scan-chunk-size is a customizable variable defined in projectile.el.

Value

24

Documentation

Number of candidate files scanned per async chunk before yielding.

Each chunk scans this many files, delivers the matches into the results buffer and re-renders, then yields to redisplay via a zero-delay timer before the next chunk. Larger values scan faster but redisplay less often; smaller values keep Emacs more responsive.

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

Aliases

projectile-replace-scan-chunk-size (obsolete since 3.4.0)

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defcustom projectile-search-scan-chunk-size 24
  "Number of candidate files scanned per async chunk before yielding.
Each chunk scans this many files, delivers the matches into the results
buffer and re-renders, then yields to redisplay via a zero-delay timer
before the next chunk.  Larger values scan faster but redisplay less
often; smaller values keep Emacs more responsive."
  :group 'projectile
  :type 'natnum
  :package-version '(projectile . "3.2.0"))