Function: orgtbl-hijacker-command-3

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

Signature

(orgtbl-hijacker-command-3 ARG)

Documentation

In tables, run org-table-move-column-right.

Outside of tables, run the binding of M-<right>.

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-move-column-right)
     (let (orgtbl-mode)
       (call-interactively
	(or (key-binding [(meta right)]) 'orgtbl-error)))))
  nil nil
  "In tables, run `org-table-move-column-right'.\nOutside of tables, run the binding of `M-<right>'."
  "p"]