Function: orgtbl-hijacker-command-108
orgtbl-hijacker-command-108 is an interactive function defined in
org-table.el.gz.
Signature
(orgtbl-hijacker-command-108 ARG)
Documentation
In tables, run org-table-previous-field.
Outside of tables, run the binding of <backtab> or S-<iso-lefttab> 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 [backtab]) (key-binding [S-iso-lefttab])
(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 `<backtab>' or `S-<iso-lefttab>' or `S-<tab>' or `<tab>' or `TAB'."
"p"]