Function: ido-wide-find-dir
ido-wide-find-dir is an interactive and byte-compiled function defined
in ido.el.gz.
Signature
(ido-wide-find-dir &optional DIR)
Documentation
Prompt for DIR to search for using find, starting from current directory.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/ido.el.gz
(defun ido-wide-find-dir (&optional dir)
"Prompt for DIR to search for using `find', starting from current directory."
(interactive)
(unless dir
(let ((enable-recursive-minibuffers t))
(setq dir
(condition-case nil
(read-string (concat "Wide find directory: " ido-current-directory) ido-text)
(quit "")))))
(when (> (length dir) 0)
(setq ido-use-merged-list t ido-try-merged-list 'wide)
(setq ido-exit 'refresh)
(setq ido-text-init (ido-final-slash dir t))
(setq ido-rotate-temp t)
(exit-minibuffer)))