Function: magit-find-file-other-frame
magit-find-file-other-frame is an autoloaded, interactive and
byte-compiled function defined in magit-files.el.
Signature
(magit-find-file-other-frame REV FILE)
Documentation
View FILE from REV, in another frame.
Switch to a buffer visiting blob REV:FILE, creating one if none already exists. If prior to calling this command the current buffer and/or cursor position is about the same file, then go to the line and column corresponding to that location.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-files.el
;;;###autoload
(defun magit-find-file-other-frame (rev file)
"View FILE from REV, in another frame.
Switch to a buffer visiting blob REV:FILE, creating one if none
already exists. If prior to calling this command the current
buffer and/or cursor position is about the same file, then go to
the line and column corresponding to that location."
(interactive (magit-find-file-read-args "Find file in other frame"))
(switch-to-buffer-other-frame (magit-find-file-noselect rev file)))