Function: ido-find-alternate-file
ido-find-alternate-file is an autoloaded, interactive and
byte-compiled function defined in ido.el.gz.
Signature
(ido-find-alternate-file)
Documentation
Find another file, select its buffer, kill previous buffer.
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 ()
"Find another file, select its buffer, kill previous buffer.
The file name is selected interactively by typing a substring.
For details of keybindings, see `ido-find-file'."
(interactive)
(ido-file-internal 'alt-file 'find-alternate-file nil "Find alternate file: "))