Function: orgtbl-hijacker-command-5

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

Signature

(orgtbl-hijacker-command-5 ARG)

Documentation

In tables, run org-table-kill-row.

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

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