From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Christopher W. Ryan" Subject: C-c a t doesn't give yield list of all TODO items Date: Sat, 03 Mar 2012 23:33:10 -0500 Message-ID: <4F52F086.7080505@binghamton.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([208.118.235.92]:44020) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S438F-0001eA-Pc for emacs-orgmode@gnu.org; Sat, 03 Mar 2012 23:33:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S438D-00049r-S1 for emacs-orgmode@gnu.org; Sat, 03 Mar 2012 23:33:15 -0500 Received: from hrndva-omtalb.mail.rr.com ([71.74.56.122]:16986) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S438D-00049d-OH for emacs-orgmode@gnu.org; Sat, 03 Mar 2012 23:33:13 -0500 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org I'm running GNU Emacs 23.1.1 (i486-pc-linux-gnu, GTK+ Version 2.20.1) of 2011-03-04 on palmer, modified by Debian, on Ubuntu 10.04 LTS. Org-mode version 7.6. The online Org-mode manual reads: "10.3.2 The global TODO list "The global TODO list contains all unfinished TODO items formatted and collected into a single place. "C-c a t (org-todo-list) "Show the global TODO list. " 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. --Chris Ryan PS: in case it is relevant, my .emacs file, rather a short one, looks like this: ;;(load-file "~/.emacs.d/color-theme/themes/color-theme-subdued.el") ;;(color-theme-subdued) (require 'color-theme) (color-theme-parus) (custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(org-agenda-files (quote ("~/DATA/BookIdeas.org" "~/orgjunk.org")))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. ) ;; don't make back-up files (setq make-backup-files nil) ;; single space between sentences (setq sentence-end-double-space nil) ;; active Babel languages (org-babel-do-load-languages 'org-babel-load-languages '((R . t) ))