Function: magit-read-files

magit-read-files is a byte-compiled function defined in magit-diff.el.

Signature

(magit-read-files PROMPT INITIAL-INPUT HISTORY &optional LIST-FN)

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-diff.el
(defun magit-read-files (prompt initial-input history &optional list-fn)
  (magit-completing-read-multiple prompt
                                  (funcall (or list-fn #'magit-list-files))
                                  nil nil
                                  (or initial-input (magit-file-at-point))
                                  history))