Function: projectile-replace--open-finish

projectile-replace--open-finish is a byte-compiled function defined in projectile.el.

Signature

(projectile-replace--open-finish BUFFER)

Documentation

Announce truncation once the scan filling BUFFER has finished.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-replace--open-finish (buffer)
  "Announce truncation once the scan filling BUFFER has finished."
  (with-current-buffer buffer
    (when projectile-replace--truncated
      (message "%s"
               (projectile-prepend-project-name
                (format "showing the first %d matches"
                        projectile-search-max-matches))))))