Function: vtable-previous-column

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

Signature

(vtable-previous-column)

Documentation

Go to the previous column.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/vtable.el.gz
(defun vtable-previous-column ()
  "Go to the previous column."
  (interactive)
  (vtable-goto-column
   (max 0 (1- (or (vtable-current-column)
                  (length (vtable--cache-widths
                           (vtable--current-cache (vtable-current-table)))))))))