Function: org-table-move-cell-left
org-table-move-cell-left is an autoloaded, interactive and
byte-compiled function defined in org-table.el.gz.
Signature
(org-table-move-cell-left)
Documentation
Move a single cell left 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-left ()
"Move a single cell left 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 'left)
(org-table-align))