Function: orgtbl-hijacker-command-107

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

Signature

(orgtbl-hijacker-command-107 ARG)

Documentation

In tables, run org-table-previous-field.

Outside of tables, run the binding of S-<iso-lefttab> or <backtab> or S-<tab> or <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 'org-table-previous-field)
     (let (orgtbl-mode)
       (call-interactively
	(or (key-binding [S-iso-lefttab]) (key-binding [backtab])
	    (key-binding [(shift tab)]) (key-binding [(tab)])
	    (key-binding "	") 'orgtbl-error)))))
  nil nil
  "In tables, run `org-table-previous-field'.\nOutside of tables, run the binding of `S-<iso-lefttab>' or `<backtab>' or `S-<tab>' or `<tab>' or `TAB'."
  "p"]