Variable: markdown-ts-ellipsis

markdown-ts-ellipsis is a customizable variable defined in markdown-ts-mode.el.gz.

Value

nil

Documentation

The ellipsis to use in folded headings.

When nil, use the standard three dots. When a non-empty string, use that string instead.

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-ellipsis nil
  "The ellipsis to use in folded headings.
When nil, use the standard three dots.  When a non-empty string,
use that string instead."
  :type '(choice (const  :tag "Default (...)" nil)
                 (string :tag "String" :value " ⌄"))
  :version "31.1"
  :package-version "1.0")