Function: ido-dired
ido-dired is an autoloaded, interactive and byte-compiled function
defined in ido.el.gz.
Signature
(ido-dired)
Documentation
Call dired the Ido way.
The directory is selected interactively by typing a substring.
For details of keybindings, see ido-find-file.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/ido.el.gz
;;;###autoload
(defun ido-dired ()
"Call `dired' the Ido way.
The directory is selected interactively by typing a substring.
For details of keybindings, see `ido-find-file'."
(interactive)
(let ((ido-report-no-match nil)
(ido-auto-merge-work-directories-length -1))
(ido-file-internal 'dired 'dired nil "Dired: " 'dir)))