Function: magit-blame-cycle-style
magit-blame-cycle-style is an interactive and byte-compiled function
defined in magit-blame.el.
Signature
(magit-blame-cycle-style)
Documentation
Change how blame information is visualized.
Cycle through the elements of option magit-blame-styles.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-blame.el
(defun magit-blame-cycle-style ()
"Change how blame information is visualized.
Cycle through the elements of option `magit-blame-styles'."
(interactive)
(setq magit-blame--style
(or (cadr (cl-member (car magit-blame--style)
magit-blame-styles :key #'car))
(car magit-blame-styles)))
(magit-blame--update-margin)
(magit-blame--update-overlays))