Function: magit-repolist-find-file-other-frame

magit-repolist-find-file-other-frame is an interactive and byte-compiled function defined in magit-repos.el.

Signature

(magit-repolist-find-file-other-frame REPOS FILE)

Documentation

Find a file in all marked or listed repositories.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-repos.el
(defun magit-repolist-find-file-other-frame (repos file)
  "Find a file in all marked or listed repositories."
  (interactive (list (magit-repolist--get-repos ?*)
                     (read-string "Find file in repositories: ")))
  (magit-repolist--mapc (##find-file-other-frame file) repos))