Function: magit-diff-more-context

magit-diff-more-context is an interactive and byte-compiled function defined in magit-diff.el.

Signature

(magit-diff-more-context &optional COUNT)

Documentation

Increase 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-more-context (&optional count)
  "Increase the context for diff hunks by COUNT lines."
  (interactive "p")
  (magit-diff-set-context (##+ (or % 0) count)))