Function: ido-next-match

ido-next-match is an interactive and byte-compiled function defined in ido.el.gz.

Signature

(ido-next-match)

Documentation

Put first element of ido-matches at the end of the list.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ido.el.gz
(defun ido-next-match ()
  "Put first element of `ido-matches' at the end of the list."
  (interactive)
  (if ido-matches
      (let ((next (cadr ido-matches)))
	(setq ido-cur-list (ido-chop ido-cur-list next))
	(setq ido-matches (ido-chop ido-matches next))
	(setq ido-rescan nil))))