Function: ido-fallback-command
ido-fallback-command is an interactive and byte-compiled function
defined in ido.el.gz.
Signature
(ido-fallback-command &optional FALLBACK-COMMAND)
Documentation
Fallback to non-Ido version of current command.
The optional FALLBACK-COMMAND argument indicates which command to run.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/ido.el.gz
(defun ido-fallback-command (&optional fallback-command)
"Fallback to non-Ido version of current command.
The optional FALLBACK-COMMAND argument indicates which command to run."
(interactive)
(let ((i (length ido-text)))
(while (> i 0)
(push (aref ido-text (setq i (1- i))) unread-command-events)))
(setq ido-exit 'fallback)
(setq ido-fallback fallback-command)
(exit-minibuffer))