Function: ido-pop-dir

ido-pop-dir is an interactive and byte-compiled function defined in ido.el.gz.

Signature

(ido-pop-dir ARG)

Documentation

Pop directory from input stack back to input.

With C-u (universal-argument), pop all elements.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ido.el.gz
(defun ido-pop-dir (arg)
  "Pop directory from input stack back to input.
With \\[universal-argument], pop all elements."
  (interactive "P")
  (when ido-input-stack
    (setq ido-exit (if arg 'pop-all 'pop))
    (exit-minibuffer)))