From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Amol Gawai" Subject: agenda command not working for anything except timeline Date: Fri, 8 Feb 2008 17:07:12 +0530 Message-ID: <718b3e910802080337n7373cbb3m1354512d7f9a2c3b@mail.gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0017740554==" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JNRXe-0003tn-Lg for emacs-orgmode@gnu.org; Fri, 08 Feb 2008 06:37:14 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JNRXd-0003tT-W6 for emacs-orgmode@gnu.org; Fri, 08 Feb 2008 06:37:14 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JNRXd-0003tN-Nt for emacs-orgmode@gnu.org; Fri, 08 Feb 2008 06:37:13 -0500 Received: from ug-out-1314.google.com ([66.249.92.173]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JNRXd-0004QM-94 for emacs-orgmode@gnu.org; Fri, 08 Feb 2008 06:37:13 -0500 Received: by ug-out-1314.google.com with SMTP id a2so904071ugf.48 for ; Fri, 08 Feb 2008 03:37:12 -0800 (PST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org --===============0017740554== Content-Type: multipart/alternative; boundary="----=_Part_18117_22989804.1202470632278" ------=_Part_18117_22989804.1202470632278 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, I have added custom todo keywords. I am unable to get any agenda view except for timeline (C-c aL). All other search for tags (C-c am) todo(C-c at) show empty agenda buffer. Any solutions. Here is my configuration. I am using ntemacs - 23.0.0.1. Org-mode - 5.21 and my org specific section is as follows. ; ------------------------------------------------------------------------------------------------------- ;; The following lines are always needed. Choose your own keys. (add-to-list 'auto-mode-alist '("\\.org$" . org-mode)) (define-key global-map "\C-cl" 'org-store-link) (define-key global-map "\C-ca" 'org-agenda) (add-hook 'org-mode-hook 'turn-on-font-lock) ; org-mode buffers only (require 'org-install) (setq org-agenda-include-diary t) ;add all diary entries to agenda view ; (setq org-log-done '(done)) - moved to individual file #+STARTUP: lognotestate (setq org-todo-keywords '((sequence "Project" "Started" "InProgress" "NearingCompletion" "|" "Completed" ) (sequence "Task" "Started" "|" "Completed") (sequence "NextAction" "|" "Completed"))) (defface org-project-face '((t (:foreground "blue" :weight bold :bold t))) "Face for Project todo items.") (defface org-task-face '((t (:foreground "cyan" :weight bold :bold t))) "Face for Task todo items.") (setq org-todo-keyword-faces '(("Project" . org-project-face) ("Task" . org-task-face) ("NextAction" . org-warning))) (setq org-agenda-custom-commands '(("n" todo "NextAction"))) ;; remember mode for Org (require 'remember) ;;(org-remember-insinuate) (setq org-directory "e:/Amol/Work/EmacsOrgDir/") (setq org-default-notes-file (concat org-directory "/notes.org")) (define-key global-map "\C-cr" 'org-remember) ;; templates for Org - remember (setq org-remember-templates '(("Todo" ?t "* TODO %?\n %i\n %a" (concat org-directory "/TODO.org") "Tasks") ("Journal" ?j "* %U %?\n\n %i\n %a" (concat org-directory "/JOURNAL.org")) ("Idea" ?i "* %^{Title}\n %i\n %a" (concat org-directory "/JOURNAL.org") "New Ideas"))) ; ------------------------------------------------------------------------------------------------------- Thanks a lot. Amol ------=_Part_18117_22989804.1202470632278 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi,
I have added custom todo keywords. I am unable to get any agenda view except for timeline (C-c aL).
All other search for tags (C-c am) todo(C-c at) show empty agenda buffer.
Any solutions.
Here is my configuration.
I am using ntemacs -  23.0.0.1.
Org-mode - 5.21
and my org specific section is as follows.

; -------------------------------------------------------------------------------------------------------
;; The following lines are always needed.  Choose your own keys.
(add-to-list 'auto-mode-alist '("\\.org$" . org-mode))
(define-key global-map "\C-cl" 'org-store-link)
(define-key global-map "\C-ca" 'org-agenda)
(add-hook 'org-mode-hook 'turn-on-font-lock)  ; org-mode buffers only
(require 'org-install)
(setq org-agenda-include-diary t) ;add all diary entries to agenda view
; (setq org-log-done '(done)) - moved to individual file #+STARTUP: lognotestate
(setq org-todo-keywords
           '((sequence "Project" "Started" "InProgress" "NearingCompletion" "|" "Completed" )
             (sequence "Task" "Started" "|" "Completed")
             (sequence "NextAction" "|" "Completed")))
(defface org-project-face '((t (:foreground "blue" :weight bold :bold t)))
  "Face for Project todo items.")
(defface org-task-face '((t (:foreground "cyan" :weight bold :bold t)))
  "Face for Task todo items.")
(setq org-todo-keyword-faces
      '(("Project" . org-project-face)
        ("Task" . org-task-face)
        ("NextAction" . org-warning)))
(setq org-agenda-custom-commands
      '(("n" todo "NextAction")))
;; remember mode for Org
(require 'remember)
;;(org-remember-insinuate)
(setq org-directory "e:/Amol/Work/EmacsOrgDir/")
(setq org-default-notes-file (concat org-directory "/notes.org"))
(define-key global-map "\C-cr" 'org-remember)
;; templates for Org - remember
(setq org-remember-templates
      '(("Todo" ?t "* TODO %?\n  %i\n  %a" (concat org-directory "/TODO.org") "Tasks")
       ("Journal" ?j "* %U %?\n\n  %i\n  %a" (concat org-directory "/JOURNAL.org"))
       ("Idea" ?i "* %^{Title}\n  %i\n  %a" (concat org-directory "/JOURNAL.org") "New Ideas")))
; -------------------------------------------------------------------------------------------------------

Thanks a lot.
Amol

------=_Part_18117_22989804.1202470632278-- --===============0017740554== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --===============0017740554==--