Function: projectile-replace--flush-files

projectile-replace--flush-files is an interactive and byte-compiled function defined in projectile.el.

Signature

(projectile-replace--flush-files REGEXP)

Documentation

Remove matches whose project-relative file matches REGEXP.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-replace--flush-files (regexp)
  "Remove matches whose project-relative file matches REGEXP."
  (interactive (list (read-regexp "Flush matches whose file matches regexp")))
  (projectile-replace--filter-by
   (lambda (m) (not (projectile-replace--file-matches-p m regexp)))))