Function: orgtbl-hijacker-command-100

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

Signature

(orgtbl-hijacker-command-100 ARG)

Documentation

In tables, run orgtbl-ret.

Outside of tables, run the binding of <return> or 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 'orgtbl-ret)
     (let (orgtbl-mode)
       (call-interactively
	(or (key-binding [(return)]) (key-binding "
") 'orgtbl-error)))))
  nil nil
  "In tables, run `orgtbl-ret'.\nOutside of tables, run the binding of `<return>' or `RET'."
  "p"]