Function: completion-preview-prev-candidate

completion-preview-prev-candidate is an interactive and byte-compiled function defined in completion-preview.el.gz.

Signature

(completion-preview-prev-candidate N)

Documentation

Cycle the candidate the preview is showing N candidates backward.

If N is negative, cycle -N candidates forward. Interactively, N is the prefix argument and defaults to 1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/completion-preview.el.gz
(defun completion-preview-prev-candidate (n)
  "Cycle the candidate the preview is showing N candidates backward.

If N is negative, cycle -N candidates forward.  Interactively, N is the
prefix argument and defaults to 1."
  (interactive "p")
  (completion-preview-next-candidate (- n)))