Function: ido-dired-other-frame
ido-dired-other-frame is an autoloaded, interactive and byte-compiled
function defined in ido.el.gz.
Signature
(ido-dired-other-frame)
Documentation
"Edit" a directory. Like ido-dired but make a new frame.
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-other-frame ()
"\"Edit\" a directory. Like `ido-dired' but make a new frame.
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-other-frame #'dired-other-frame nil
"Dired: " 'dir)))