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