Function: markdown-table-move-column-left

markdown-table-move-column-left is an interactive and byte-compiled function defined in markdown-mode.el.

Signature

(markdown-table-move-column-left)

Documentation

Move table column at point to the left.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-table-move-column-left ()
  "Move table column at point to the left."
  (interactive)
  (markdown-table-move-column 'left))