Function: org-table-move-cell-down

org-table-move-cell-down is an autoloaded, interactive and byte-compiled function defined in org-table.el.gz.

Signature

(org-table-move-cell-down)

Documentation

Move a single cell down 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-down ()
  "Move a single cell down 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 'down)
  (org-table-align))