Function: orgtbl-hijacker-command-11
orgtbl-hijacker-command-11 is an interactive function defined in
org-table.el.gz.
Signature
(orgtbl-hijacker-command-11 ARG)
Documentation
In tables, run org-table-paste-rectangle.
Outside of tables, run the binding of C-c C-y.
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-paste-rectangle)
(let (orgtbl-mode)
(call-interactively (or (key-binding "") 'orgtbl-error)))))
nil nil
"In tables, run `org-table-paste-rectangle'.\nOutside of tables, run the binding of `C-c C-y'."
"p"]