Function: projectile-replace--goto-prev-match
projectile-replace--goto-prev-match is an interactive and
byte-compiled function defined in projectile.el.
Signature
(projectile-replace--goto-prev-match)
Documentation
Move point to the previous match line.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-replace--goto-prev-match ()
"Move point to the previous match line."
(interactive)
(let ((start (point)))
(forward-line -1)
(while (and (not (bobp)) (not (projectile-replace--match-at-point)))
(forward-line -1))
(if (projectile-replace--match-at-point)
(beginning-of-line)
(goto-char start)
(message "No previous matches"))))