Function: ido-toggle-literal
ido-toggle-literal is an interactive and byte-compiled function
defined in ido.el.gz.
Signature
(ido-toggle-literal)
Documentation
Toggle literal reading of this file.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/ido.el.gz
(defun ido-toggle-literal ()
"Toggle literal reading of this file."
(interactive)
(if (and ido-mode (eq ido-cur-item 'file))
(progn
(setq ido-find-literal (not ido-find-literal))
(setq ido-text-init ido-text)
(setq ido-exit 'keep)
(exit-minibuffer))))