Function: org-table-move-cell-up
org-table-move-cell-up is an autoloaded, interactive and byte-compiled
function defined in org-table.el.gz.
Signature
(org-table-move-cell-up)
Documentation
Move a single cell up in a table.
Swap with anything in target cell.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
;;;###autoload
(defun org-table-move-cell-up ()
"Move a single cell up in a table.
Swap with anything in target cell."
(interactive)
(unless (org-table-check-inside-data-field)
(error "No table at point"))
(org-table--move-cell 'up)
(org-table-align))