Function: orgtbl-hijacker-command-106

orgtbl-hijacker-command-106 is an interactive function defined in org-table.el.gz.

Signature

(orgtbl-hijacker-command-106 ARG)

Documentation

In tables, run org-table-wrap-region.

Outside of tables, run the binding of M-<return> or M-RET.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
;; Could not find source code, showing raw function object.
#[(arg)
  ((if (org-at-table-p) (call-interactively 'org-table-wrap-region)
     (let (orgtbl-mode)
       (call-interactively
	(or (key-binding [(meta return)]) (key-binding "\215")
	    'orgtbl-error)))))
  nil nil
  "In tables, run `org-table-wrap-region'.\nOutside of tables, run the binding of `M-<return>' or `M-RET'."
  "p"]