[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] Habits in agenda view
From: |
Michael Brand |
Subject: |
Re: [O] Habits in agenda view |
Date: |
Mon, 27 Feb 2012 13:49:29 +0100 |
Hi Renger
Not sure why you want to skip habits in tags-todo, they should not
appear anyway. Try:
("s" "Agenda with Next and Habit as separated views"
((agenda ""
((org-habit-show-habits nil)))
(tags-todo "-WAIT/!NEXT"
((org-agenda-overriding-header "Next Tasks")
(org-agenda-skip-function 'skip-projects-and-habits)
(org-agenda-skip-function '(org-agenda-skip-entry-if
'notregexp "\\[#A\\]"))
(org-agenda-todo-ignore-scheduled t)
(org-agenda-todo-ignore-deadlines t)
(org-tags-match-list-sublevels t)
))
(agenda "HABIT"
((org-agenda-overriding-header "Habits")
(org-agenda-entry-types '(:scheduled))
(org-agenda-skip-function
'(org-agenda-skip-entry-if 'notregexp ":STYLE:.*habit"))))))
See also this thread:
http://lists.gnu.org/archive/html/emacs-orgmode/2011-05/msg00665.html
Michael