Function: ido-insert-file
ido-insert-file is an autoloaded, interactive and byte-compiled
function defined in ido.el.gz.
Signature
(ido-insert-file)
Documentation
Insert contents of file in current 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-insert-file ()
"Insert contents of file in current buffer.
The file name is selected interactively by typing a substring.
For details of keybindings, see `ido-find-file'."
(interactive)
(ido-file-internal 'insert 'insert-file nil "Insert file: " nil nil 'ido-enter-insert-buffer))