Function: ido-next-work-file
ido-next-work-file is an interactive and byte-compiled function
defined in ido.el.gz.
Signature
(ido-next-work-file)
Documentation
Change to previous working file name in list.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/ido.el.gz
(defun ido-next-work-file ()
"Change to previous working file name in list."
(interactive)
(let ((name (ido-get-work-file -1)))
(when name
(setq ido-text-init name)
(setq ido-exit 'refresh)
(exit-minibuffer))))