Function: magit-blame-next-chunk
magit-blame-next-chunk is an interactive and byte-compiled function
defined in magit-blame.el.
Signature
(magit-blame-next-chunk)
Documentation
Move to the next chunk.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-blame.el
(defun magit-blame-next-chunk ()
"Move to the next chunk."
(interactive)
(if-let ((next (next-single-char-property-change
(point) 'magit-blame-chunk)))
(goto-char next)
(user-error "No more chunks")))