Function: ido-find-alternate-file-other-window
ido-find-alternate-file-other-window is an autoloaded, interactive and
byte-compiled function defined in ido.el.gz.
Signature
(ido-find-alternate-file-other-window)
Documentation
Find file as a replacement for the file in the next window.
The file name is selected interactively by typing a substring.
For details of keybindings, see ido-find-file.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/ido.el.gz
;;;###autoload
(defun ido-find-alternate-file-other-window ()
"Find file as a replacement for the file in the next window.
The file name is selected interactively by typing a substring.
For details of keybindings, see `ido-find-file'."
(interactive)
(ido-file-internal 'alt-file-other-window #'find-alternate-file-other-window))