I have a number of agenda files with TODO keywords. Hitting C-c-a-t brings up an empty agenda. However, C-c-a-T then selecting TODO keyword does what is expected and shows all TODO items in the agenda.
Why does C-c-a-t not work as expected?
I use org-mode 8.2.9.
org-todo-list
(without and with an argument resp.). MaybeC-c a t
has been reboud somehow? I would put a breakpoint using edebug onorg-todo-list
, doC-c a t
and see if it stops at the function. Or check withC-h c C-c a
to make sure that's still a prefix key that's bound toorg-agenda
(if that is the case, then both t and T should work fine). - NickDorg-agenda-custom-commands
, and I see that I have remappedt
there. - user3156459