Function: projectile-replace--ensure-not-scanning

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

Signature

(projectile-replace--ensure-not-scanning)

Documentation

Refuse with a user-error when the results buffer is still scanning.

The write-back and export must never run against a partial match set.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-replace--ensure-not-scanning ()
  "Refuse with a `user-error' when the results buffer is still scanning.
The write-back and export must never run against a partial match set."
  (when projectile-replace--scanning
    (user-error "Still searching; wait for the scan to finish")))