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