Function: projectile-replace--flush-matches
projectile-replace--flush-matches is an interactive and byte-compiled
function defined in projectile.el.
Signature
(projectile-replace--flush-matches REGEXP)
Documentation
Remove matches whose context line matches REGEXP.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-replace--flush-matches (regexp)
"Remove matches whose context line matches REGEXP."
(interactive (list (read-regexp "Flush matches whose line matches regexp")))
(projectile-replace--filter-by
(lambda (m) (not (projectile-replace--line-matches-p m regexp)))))