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