[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [BUG] org-toggle-headline inserts "TODO" regardless of local definit
From: |
Ihor Radchenko |
Subject: |
Re: [BUG] org-toggle-headline inserts "TODO" regardless of local definitions [9.5 (9.5-g0a86ad @ /home/rasmus/.emacs.d/elpa/org-9.5/)] |
Date: |
Sun, 17 Oct 2021 22:23:15 +0800 |
autofrettage <autofrettage@protonmail.ch> writes:
> * DONE Apple
> ** TODO Banana
>
> ...instead of these:
>
> * baz Apple
> ** foo Banana
Confirmed.
Currently, checkbox to todo keyword mapping is hard-coded in
org-list-to-subtree.
We may use something like
[ ] -> (car org-not-done-keywords);
[-] -> (car org-not-done-keywords);
[X] -> (car org-done-keywords);
Though it may still be not ideal when there are multiple keywords to
choose from.
Best,
Ihor