Function: markdown-ts-table-insert-column-left
markdown-ts-table-insert-column-left is an interactive and
byte-compiled function defined in markdown-ts-mode.el.gz.
Signature
(markdown-ts-table-insert-column-left &optional CLONE)
Documentation
Insert a table column to the left 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-left (&optional clone)
"Insert a table column to the left 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 'left clone))