Function: projectile-replace--set-replacement

projectile-replace--set-replacement is an interactive and byte-compiled function defined in projectile.el.

Signature

(projectile-replace--set-replacement)

Documentation

Re-read the replacement string and re-render the previews.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-replace--set-replacement ()
  "Re-read the replacement string and re-render the previews."
  (interactive)
  (setq projectile-replace--replacement
        (read-string (format "Replace %s with: " projectile-replace--term)
                     projectile-replace--replacement))
  (projectile-replace--render-preserve))