Function: magit-diff-unmerged

magit-diff-unmerged is an autoloaded, interactive and byte-compiled function defined in magit-diff.el.

Signature

(magit-diff-unmerged &optional ARGS FILES)

Documentation

Show changes that are being merged.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-diff.el
;;;###autoload
(defun magit-diff-unmerged (&optional args files)
  "Show changes that are being merged."
  (interactive (magit-diff-arguments))
  (unless (magit-merge-in-progress-p)
    (user-error "No merge is in progress"))
  (magit-diff-setup-buffer (magit--merge-range) nil args files 'committed))