Function: tabulated-list-previous-column

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

Signature

(tabulated-list-previous-column &optional ARG)

Documentation

Go to the start of the column point is in on the current line.

If ARG is provided, move that many columns.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/tabulated-list.el.gz
(defun tabulated-list-previous-column (&optional arg)
  "Go to the start of the column point is in on the current line.
If ARG is provided, move that many columns."
  (interactive "p")
  (dotimes (_ (or arg 1))
    (let ((prev (or (previous-single-property-change
                     (point) 'tabulated-list-column-name)
                    1)))
      (unless (< prev (pos-bol))
        (goto-char prev)))))