Function: ido-edit-input

ido-edit-input is an interactive and byte-compiled function defined in ido.el.gz.

Signature

(ido-edit-input)

Documentation

Edit absolute file name entered so far with Ido; terminate by RET.

If cursor is not at the end of the user input, move to end of input.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ido.el.gz
(defun ido-edit-input ()
  "Edit absolute file name entered so far with Ido; terminate by RET.
If cursor is not at the end of the user input, move to end of input."
  (interactive)
  (if (not (eobp))
      (end-of-line)
    (setq ido-text-init (if ido-matches (ido-name (car ido-matches)) ido-text))
    (setq ido-exit 'edit)
    (exit-minibuffer)))