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