Variable: org-list-allow-alphabetical
org-list-allow-alphabetical is a customizable variable defined in
org-list.el.gz.
Value
nil
Documentation
Non-nil means single character alphabetical bullets are allowed.
Both uppercase and lowercase are handled. Lists with more than
26 items will fallback to standard numbering. Alphabetical
counters like "[@c]" will be recognized.
This variable needs to be set before org.el is loaded. If you need to make a change while Emacs is running, use the customize interface or run the following code after updating it:
M-x org-element-update-syntax (org-element-update-syntax)
This variable was added, or its default value changed, in Emacs 24.1.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-list.el.gz
(defcustom org-list-allow-alphabetical nil
"Non-nil means single character alphabetical bullets are allowed.
Both uppercase and lowercase are handled. Lists with more than
26 items will fallback to standard numbering. Alphabetical
counters like \"[@c]\" will be recognized.
This variable needs to be set before org.el is loaded. If you
need to make a change while Emacs is running, use the customize
interface or run the following code after updating it:
`\\[org-element-update-syntax]'"
:group 'org-plain-lists
:version "24.1"
:type 'boolean
:set (lambda (var val) (set var val)
(when (featurep 'org-element) (org-element-update-syntax))))