Variable: org-plain-list-ordered-item-terminator

org-plain-list-ordered-item-terminator is a customizable variable defined in org-list.el.gz.

Value

t

Documentation

The character that makes a line with leading number an ordered list item.

Valid values are ?. and ?\). To get both terminators, use t.

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)

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-list.el.gz
(defcustom org-plain-list-ordered-item-terminator t
  "The character that makes a line with leading number an ordered list item.
Valid values are ?. and ?\\).  To get both terminators, use t.

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
  :type '(choice (const :tag "dot like in \"2.\"" ?.)
		 (const :tag "paren like in \"2)\"" ?\))
		 (const :tag "both" t))
  :set (lambda (var val) (set var val)
	 (when (featurep 'org-element) (org-element-update-syntax))))