Function: projectile-replace--scanning-note

projectile-replace--scanning-note is a byte-compiled function defined in projectile.el.

Signature

(projectile-replace--scanning-note NMATCHES)

Documentation

Return a progress note for a results buffer still scanning, else "".

NMATCHES is the count found so far. Shown in the status header while an async scan streams matches in.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-replace--scanning-note (nmatches)
  "Return a progress note for a results buffer still scanning, else \"\".
NMATCHES is the count found so far.  Shown in the status header while an
async scan streams matches in."
  (if projectile-replace--scanning
      (format "  Searching... %d match%s so far"
              nmatches (if (= nmatches 1) "" "es"))
    ""))