Function: org-table-fedit-toggle-coordinates

org-table-fedit-toggle-coordinates is an interactive and byte-compiled function defined in org-table.el.gz.

Signature

(org-table-fedit-toggle-coordinates)

Documentation

Toggle the display of coordinates in the referenced table.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
(defun org-table-fedit-toggle-coordinates ()
  "Toggle the display of coordinates in the referenced table."
  (interactive)
  (let ((pos (marker-position org-pos)))
    (with-current-buffer (marker-buffer org-pos)
      (save-excursion
	(goto-char pos)
	(org-table-toggle-coordinate-overlays)))))