Function: ido-push-dir-first
ido-push-dir-first is an interactive and byte-compiled function
defined in ido.el.gz.
Signature
(ido-push-dir-first)
Documentation
Move to previous directory in file name, push first match on stack.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/ido.el.gz
(defun ido-push-dir-first ()
"Move to previous directory in file name, push first match on stack."
(interactive)
(if ido-matches
(setq ido-text (ido-name (car ido-matches))))
(setq ido-exit 'push)
(exit-minibuffer))