Variable: markdown-ts-code-block-commands

markdown-ts-code-block-commands is a variable defined in markdown-ts-mode.el.gz.

Value

(indent-for-tab-command electric-newline-and-maybe-indent
			completion-at-point complete-symbol newline
			comment-dwim comment-line
			comment-or-uncomment-region
			markdown-ts--code-block-fill-paragraph
			prog-fill-reindent-defun)

Documentation

Commands to execute in a code-block context.

See markdown-ts--run-command-in-code-block.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/markdown-ts-mode.el.gz
;;; Code block minor mode support and code-block context commands:

(defvar markdown-ts-code-block-commands '(indent-for-tab-command
                                          electric-newline-and-maybe-indent
                                          completion-at-point
                                          complete-symbol
                                          newline
                                          comment-dwim
                                          comment-line
                                          comment-or-uncomment-region
                                          markdown-ts--code-block-fill-paragraph
                                          prog-fill-reindent-defun)
  "Commands to execute in a code-block context.
See `markdown-ts--run-command-in-code-block'.")