Function: orgtbl-hijacker-command-103

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

Signature

(orgtbl-hijacker-command-103 ARG)

Documentation

In tables, run orgtbl-tab.

Outside of tables, run the binding of TAB or <tab>.

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