Function: vtable-goto-column
vtable-goto-column is a byte-compiled function defined in
vtable.el.gz.
Signature
(vtable-goto-column COLUMN)
Documentation
Go to COLUMN on the current line.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/vtable.el.gz
(defun vtable-goto-column (column)
"Go to COLUMN on the current line."
(beginning-of-line)
(if-let ((match (text-property-search-forward 'vtable-column column t)))
(goto-char (prop-match-beginning match))
(end-of-line)))