Function: markdown-ts-table-clone-row-above

markdown-ts-table-clone-row-above is an interactive and byte-compiled function defined in markdown-ts-mode.el.gz.

Signature

(markdown-ts-table-clone-row-above)

Documentation

Insert a table row above point.

If point is in the header, insert above the first row of the table. 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-clone-row-above ()
  "Insert a table row above point.
If point is in the header, insert above the first row of the table.
If point is not at a table, do nothing."
  (interactive)
  (markdown-ts-table-insert-row-above 'clone))