Variable: markdown-ts-view-mode-abbrev-table

markdown-ts-view-mode-abbrev-table is a variable defined in markdown-ts-mode.el.gz.

Value

#<obarray n=1>

Documentation

Abbrev table for markdown-ts-view-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/markdown-ts-mode.el.gz
;;; View mode:

(define-derived-mode markdown-ts-view-mode
  nil ; Intentionally left blank.
  "Markdown View"
  "Major mode for read-only viewing Markdown using tree-sitter grammar.
This is an experimental mode that has a number of unresolved issues,
therefore Emacs does not yet enable it by default."
  ;; `markdown-ts-mode' is manually added as a parent to avoid invoking
  ;; its initialization before we set override variables.
  (setq-local markdown-ts-menu-bar-show nil)
  (setq-local markdown-ts-hide-markup t)
  (setq-local markdown-ts-inline-images t)
  (setq-local markdown-ts-hard-line-break-backslash 'hide)
  (setq-local markdown-ts-hard-line-break-space 'hide)
  (setq-local markdown-ts-fontify-code-blocks-natively t)
  (setq-local markdown-ts-enable-code-block-context-mode nil)
  (setq-local markdown-ts-enable-table-mode nil)
  (run-hooks 'markdown-ts-view-mode-pre-init-hook)
  (markdown-ts-mode--initialize)
  (setq buffer-read-only t))