Function: ido-prev-match
ido-prev-match is an interactive and byte-compiled function defined in
ido.el.gz.
Signature
(ido-prev-match)
Documentation
Put last element of ido-matches at the front of the list.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/ido.el.gz
(defun ido-prev-match ()
"Put last element of `ido-matches' at the front of the list."
(interactive)
(if ido-matches
(let ((prev (car (last ido-matches))))
(setq ido-cur-list (ido-chop ido-cur-list prev))
(setq ido-matches (ido-chop ido-matches prev))
(setq ido-rescan nil))))