Function: magit-toggle-log-margin-style
magit-toggle-log-margin-style is an interactive and byte-compiled
function defined in magit-log.el.
Signature
(magit-toggle-log-margin-style)
Documentation
Toggle between the regular and the shortstat margin style.
The shortstat style is experimental and rather slow.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-log.el
(transient-define-suffix magit-toggle-log-margin-style ()
"Toggle between the regular and the shortstat margin style.
The shortstat style is experimental and rather slow."
:description "Toggle shortstat"
:key "x"
:transient t
(interactive)
(setq magit-log-margin-show-shortstat
(not magit-log-margin-show-shortstat))
(magit-set-buffer-margins nil t))