"Christopher W. Ryan" <cr...@binghamton.edu> writes: > But when I try to type C-c a > > I only get that far, and emacs tells me, "C-c a is undefined" > > There is a drop-down menu item under the Org item, called "Agenda Command..." > which offers me lettered choices, and t will list all TODO entries. But what > is > the keyboard shortcut, if not C-a a t ? > > Thanks.
You have to bind it yourself. Put (global-set-key "\C-ca" 'org-agenda) somewhere sensible. This *is* mentioned somewhere in the org docs, but I can't remember where off the top of my head.