Function: orgtbl-create-or-convert-from-region

orgtbl-create-or-convert-from-region is an interactive and byte-compiled function defined in org-table.el.gz.

Signature

(orgtbl-create-or-convert-from-region ARG)

Documentation

Create table or convert region to table, if no conflicting binding.

This installs the table binding C-c |, but only if there is no conflicting binding to this key outside orgtbl-mode(var)/orgtbl-mode(fun).

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
(defun orgtbl-create-or-convert-from-region (_arg)
  "Create table or convert region to table, if no conflicting binding.
This installs the table binding `C-c |', but only if there is no
conflicting binding to this key outside `orgtbl-mode'."
  (interactive "P")
  (let* (orgtbl-mode (cmd (key-binding "\C-c|")))
    (if cmd
	(call-interactively cmd)
      (call-interactively 'org-table-create-or-convert-from-region))))