Variable: markdown-ts-table-mode

markdown-ts-table-mode is a buffer-local variable defined in markdown-ts-mode.el.gz.

Documentation

Non-nil if Markdown-Ts-Table mode is enabled.

Use the command markdown-ts-table-mode(var)/markdown-ts-table-mode(fun) to change this variable.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/markdown-ts-mode.el.gz
(define-minor-mode markdown-ts-table-mode
  "Minor mode to enable commands in tables.
If non-nil and `point' is in a table, enable
`markdown-ts-in-table-mode'."
  :group 'markdown-ts
  :interactive nil
  (markdown-ts--barf-if-not-mode 'markdown-ts-table-mode)
  (cond (markdown-ts-table-mode
         ;; Enable the minor mode `markdown-ts-in-table-mode' and
         ;; its keymap when point is within a code block.
         (add-hook 'post-command-hook
                   #'markdown-ts--enable-in-table-mode nil 'local)
         ;; If `save-place-mode' or similar is used, point could start within
         ;; a table, so initialize from that state.
         (run-with-timer 0.01 nil
                         #'markdown-ts--enable-in-table-mode))
        (t
         (remove-hook 'post-command-hook
                      #'markdown-ts--enable-in-table-mode 'local))))