Function: ido-find-file-in-dir
ido-find-file-in-dir is an autoloaded, interactive and byte-compiled
function defined in ido.el.gz.
Signature
(ido-find-file-in-dir DIR)
Documentation
Switch to another file starting from DIR.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/ido.el.gz
;;;###autoload
(defun ido-find-file-in-dir (dir)
"Switch to another file starting from DIR."
(interactive "DDir: ")
(setq dir (file-name-as-directory dir))
(ido-file-internal ido-default-file-method nil dir nil nil nil 'ignore))