Function: magit-log-toggle-commit-limit
magit-log-toggle-commit-limit is an interactive and byte-compiled
function defined in magit-log.el.
Signature
(magit-log-toggle-commit-limit)
Documentation
Toggle the number of commits the current log buffer is limited to.
If the number of commits is currently limited, then remove that limit. Otherwise set it to 256.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-log.el
;;;; Limit Commands
(defun magit-log-toggle-commit-limit ()
"Toggle the number of commits the current log buffer is limited to.
If the number of commits is currently limited, then remove that
limit. Otherwise set it to 256."
(interactive)
(magit-log-set-commit-limit (lambda (&rest _) nil)))