Variable: markdown-ts-table-auto-align

markdown-ts-table-auto-align is a customizable variable defined in markdown-ts-mode.el.gz.

Value

(cell-navigation transpose)

Documentation

Automatically align the table at point during these operations.

If t, trigger on all supported operations. If nil, do not auto align. Otherwise, it is a list of symbols representing table operations.

This variable was added, or its default value changed, in unknown version unknown.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/markdown-ts-mode.el.gz
(defcustom markdown-ts-table-auto-align '(cell-navigation transpose)
  "Automatically align the table at point during these operations.
If t, trigger on all supported operations.
If nil, do not auto align.
Otherwise, it is a list of symbols representing table operations."
  :type '(choice
          (const :tag "Do not automatically align" nil)
          (const :tag "Always automatically align" t)
          (set
           (const :tag "Cell navigation" cell-navigation)
           (const :tag "Transpose" transpose)))
  :version "31.1"
  :package-version "1.0")