Function: org-table-expand

org-table-expand is an autoloaded, interactive and byte-compiled function defined in org-table.el.gz.

Signature

(org-table-expand &optional BEGIN END)

Documentation

Expand all columns in the table at point.

Optional arguments BEGIN and END, when non-nil, specify the beginning and end position of the current table.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
;;;###autoload
(defun org-table-expand (&optional begin end)
  "Expand all columns in the table at point.
Optional arguments BEGIN and END, when non-nil, specify the
beginning and end position of the current table."
  (interactive)
  (unless (or begin (org-at-table-p)) (user-error "Not at a table"))
  (org-with-wide-buffer
   (let ((begin (or begin (org-table-begin)))
	 (end (or end (org-table-end))))
     (remove-overlays begin end 'org-overlay-type 'table-column-hide))))