Hi all,

I have (setq org-alphabetical-lists t) in my .emacs. I am trying to
set org-list-demote-modify-bullet to cycle on demoting between bullets
of the form  -/+ and 1./A.

(setq org-list-demote-modify-bullet
       '(("+" . "-") ("-" . "+") ))
accomplishes the -/+ cycling just fine.

(setq org-list-demote-modify-bullet
       '(("+" . "-") ("-" . "+") ("1." . "A.") ("A." . "1.")))
has, however, no effect on numerical nor alphabetic bullets, nor do either of

(setq org-list-demote-modify-bullet
       '(("+" . "-") ("-" . "+") ("1." . "-") ))

and

(setq org-list-demote-modify-bullet
       '(("+" . "-") ("-" . "+") ("1" . "-") ))

affect numerical bullets, so I doubt that it is that alphabetical
bullets are the problem.

Is there a way to do what I am trying to effect?

Thanks and best,

Brian vdB

Reply via email to