Function: ido-list-directory
ido-list-directory is an interactive and byte-compiled function
defined in ido.el.gz.
Signature
(ido-list-directory)
Documentation
Call list-directory 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
(defun ido-list-directory ()
"Call `list-directory' 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 'list-directory 'list-directory nil "List directory: " 'dir)))