Function: magit-anything-unmerged-p
magit-anything-unmerged-p is a byte-compiled function defined in
magit-git.el.
Signature
(magit-anything-unmerged-p &rest FILES)
Documentation
Return t if there are any merge conflicts.
If optional FILES is non-nil, then only conflicts in those files are considered.
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-git.el
(defun magit-anything-unmerged-p (&rest files)
"Return t if there are any merge conflicts.
If optional FILES is non-nil, then only conflicts in those files
are considered."
(and (magit-git-string "ls-files" "--unmerged" files) t))