Function: org-plot/goto-nearest-table

org-plot/goto-nearest-table is an interactive and byte-compiled function defined in org-plot.el.gz.

Signature

(org-plot/goto-nearest-table)

Documentation

Move the point forward to the beginning of nearest table.

Return value is the point at the beginning of the table.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-plot.el.gz
(defun org-plot/goto-nearest-table ()
  "Move the point forward to the beginning of nearest table.
Return value is the point at the beginning of the table."
  (interactive) (move-beginning-of-line 1)
  (while (not (or (org-at-table-p) (< 0 (forward-line 1)))))
  (goto-char (org-table-begin)))