Function: magit-blame-previous-chunk

magit-blame-previous-chunk is an interactive and byte-compiled function defined in magit-blame.el.

Signature

(magit-blame-previous-chunk)

Documentation

Move to the previous chunk.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-blame.el
(defun magit-blame-previous-chunk ()
  "Move to the previous chunk."
  (interactive)
  (if-let ((prev (previous-single-char-property-change
                  (point) 'magit-blame-chunk)))
      (goto-char prev)
    (user-error "No more chunks")))