Function: magit-diff-less-context
magit-diff-less-context is an interactive and byte-compiled function
defined in magit-diff.el.
Signature
(magit-diff-less-context &optional COUNT)
Documentation
Decrease the context for diff hunks by COUNT lines.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-diff.el
(defun magit-diff-less-context (&optional count)
"Decrease the context for diff hunks by COUNT lines."
(interactive "p")
(magit-diff-set-context (##max 0 (- (or % 0) count))))