Function: markdown-ts-table-move-row-down
markdown-ts-table-move-row-down is an interactive and byte-compiled
function defined in markdown-ts-mode.el.gz.
Signature
(markdown-ts-table-move-row-down)
Documentation
Move the row at point down one line.
If point is not at a table, do nothing.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/markdown-ts-mode.el.gz
(defun markdown-ts-table-move-row-down ()
"Move the row at point down one line.
If point is not at a table, do nothing."
(interactive)
(markdown-ts-table-move-row 'down))