Function: org-table-create-with-table.el

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

Signature

(org-table-create-with-table.el)

Documentation

Use the table.el package to insert a new table.

If there is already a table at point, convert between Org tables and table.el tables.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
;;; Create, Import, and Convert Tables

;;;###autoload
(defun org-table-create-with-table.el ()
  "Use the table.el package to insert a new table.
If there is already a table at point, convert between Org tables
and table.el tables."
  (interactive)
  (require 'table)
  (cond
   ((and (org-at-table.el-p)
	 (y-or-n-p "Convert table to Org table? "))
    (org-table-convert))
   ((and (org-at-table-p)
	 (y-or-n-p "Convert table to table.el table? "))
    (org-table-align)
    (org-table-convert))
   (t (call-interactively 'table-insert))))