Function: ido-select-text

ido-select-text is an interactive and byte-compiled function defined in ido.el.gz.

Signature

(ido-select-text)

Documentation

Select the buffer or file named by the prompt.

If no buffer or file exactly matching the prompt exists, maybe create a new one.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ido.el.gz
(defun ido-select-text ()
  "Select the buffer or file named by the prompt.
If no buffer or file exactly matching the prompt exists, maybe create a new one."
  (interactive)
  (setq ido-exit 'takeprompt)
  (exit-minibuffer))