Function: previous-column-completion

previous-column-completion is an interactive and byte-compiled function defined in simple.el.gz.

Signature

(previous-column-completion N)

Documentation

Move to the item in the previous column of the completions buffer.

With prefix argument N, move back N columns (negative N means move forward).

Also see the completion-auto-wrap variable.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun previous-column-completion (n)
  "Move to the item in the previous column of the completions buffer.
With prefix argument N, move back N columns (negative N means move
forward).

Also see the `completion-auto-wrap' variable."
  (interactive "p")
  (next-column-completion (- n)))