Function: projectile-replace--goto-next-match

projectile-replace--goto-next-match is an interactive and byte-compiled function defined in projectile.el.

Signature

(projectile-replace--goto-next-match)

Documentation

Move point to the next match line.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-replace--goto-next-match ()
  "Move point to the next match line."
  (interactive)
  (let ((start (point)))
    (forward-line 1)
    (while (and (not (eobp)) (not (projectile-replace--match-at-point)))
      (forward-line 1))
    (if (projectile-replace--match-at-point)
        (beginning-of-line)
      (goto-char start)
      (message "No more matches"))))