Function: tabulated-list-next-column

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

Signature

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

Documentation

Go to the start of the next column after point 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-next-column (&optional arg)
  "Go to the start of the next column after point on the current line.
If ARG is provided, move that many columns."
  (interactive "p")
  (dotimes (_ (or arg 1))
    (let ((next (or (next-single-property-change
                     (point) 'tabulated-list-column-name)
                    (point-max))))
      (when (<= next (line-end-position))
        (goto-char next)))))