emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] org-list-demote-modify-bullet and alphabetic/numerical bullets


From: Brian van den Broek
Subject: Re: [O] org-list-demote-modify-bullet and alphabetic/numerical bullets
Date: Thu, 19 Apr 2012 01:01:19 +0200

On 19 April 2012 00:57, Brian van den Broek
<address@hidden> wrote:
> On 18 April 2012 13:03, Nicolas Goaziou <address@hidden> wrote:
>> Hello,
>>
>> Brian van den Broek <address@hidden> writes:
>>
>>> 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
>
> <snip>
>
>> This should be fixed in master now.  Could you confirm this?
>>
>> Thanks for reporting the problem.
>>
>>
>> Regards,
>>
>> --
>> Nicolas Goaziou
>
>
> Thanks for your attention to this, Nicholas.
>
> The situation is improved, though not entirely fixed. However, the
> problem may well be on my end. I tried a few settings and wasn't able
> to get quite the expected behaviour; I may simply not understand the
> required syntax for org-list-demote-modify-bullet.


Gah! It *was* operator error. I must have read it through 10 times
before sending. Just as the gmail "Undo" window closed, I saw it.

I was missing the '.' seperating the bullets. I had

       '(("+" . "-") ("-" . "+") ("1." . "A.") ("A."  "1.") )

when I needed

       '(("+" . "-") ("-" . "+") ("1." . "A.") ("A." . "1.") )

Sorry for the noise and thanks for the fix!

Sheepishly,

Brian vdB



reply via email to

[Prev in Thread] Current Thread [Next in Thread]