Function: markdown-ts-table-previous-cell
markdown-ts-table-previous-cell is an interactive and byte-compiled
function defined in markdown-ts-mode.el.gz.
Signature
(markdown-ts-table-previous-cell)
Documentation
Move to the previous cell 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-cell ()
"Move to the previous cell in the table.
If not in a table, do nothing."
(interactive)
(markdown-ts-table-next-cell -1))