Function: markdown-ts-table-insert-column-right
markdown-ts-table-insert-column-right is an interactive and
byte-compiled function defined in markdown-ts-mode.el.gz.
Signature
(markdown-ts-table-insert-column-right &optional CLONE)
Documentation
Insert a table column to the right of point's column.
If CLONE is non-nil, or with a prefix argument, clone the current column, otherwise insert empty cells. Point can be in the table header or body. 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-insert-column-right (&optional clone)
"Insert a table column to the right of point's column.
If CLONE is non-nil, or with a prefix argument, clone the current
column, otherwise insert empty cells.
Point can be in the table header or body.
If point is not at a table, do nothing."
(interactive "P")
(markdown-ts-table-insert-column 'right clone))