Variable: rst-preferred-bullets
rst-preferred-bullets is a customizable variable defined in rst.el.gz.
Value
(42 45 43)
Documentation
List of favorite bullets.
This variable was added, or its default value changed, in rst version
1.1.0.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/rst.el.gz
(defcustom rst-preferred-bullets
'(?* ?- ?+)
"List of favorite bullets."
:group 'rst
:type `(repeat
(choice ,@(mapcar (lambda (char)
(list 'const
:tag (char-to-string char) char))
rst-bullets)))
:package-version '(rst . "1.1.0"))