Hi Bastien,

Bastien wrote:
> Sebastien Vauban writes:
>
>> Having such lines in one Org file (where the DEADLINE line is
>> commented):
>>
>> ** TODO Aspirer les filtres de ventilation D350
>>    # DEADLINE: <2014-04-09 Wed .+1m -0d>
>>
>> still makes that task be referenced in my agenda.
>
> Which agenda?

This custom view:

#+begin_src emacs-lisp
    (add-to-list 'org-agenda-custom-commands
                 '("f" "Today"

                   ;; list of all TODO entries with deadline today
                   ((tags-todo "DEADLINE=\"<+0d>\""
                               ((org-agenda-overriding-header "DUE TODAY")
                                (org-agenda-skip-function
                                 '(org-agenda-skip-entry-if 'notdeadline))
                                (org-agenda-sorting-strategy '(priority-down))))

                    ;; list of all TODO entries with deadline before today
                    (tags-todo "DEADLINE<\"<+0d>\""
                               ((org-agenda-overriding-header "OVERDUE")
                                (org-agenda-skip-function
                                 '(org-agenda-skip-entry-if 'notdeadline))
                                (org-agenda-sorting-strategy 
'(priority-down)))))) t)
#+end_src

> I cannot reproduce this with a simple week agenda view.

Here is an ECM file:

--8<---------------cut here---------------start------------->8---
#+TITLE:     Example of Tasks
#+LANGUAGE:  en

* Marketing
  :PROPERTIES:
  :CATEGORY: Marketing
  :END:

** TODO Check payment of rent
   # DEADLINE: <2014-05-15 Thu ++1m -0d>
   :PROPERTIES:
   :LAST_REPEAT: [2014-05-02 Fri 17:45]
   :Effort:   0:10
   :END:
--8<---------------cut here---------------end--------------->8---

See how it behaves on http://screencast.com/t/Yoj5uSA8Wb: I really need
to "break" the DEADLINE keyword for it to become inactive. Putting it in
a comment is not enough.

Best regards,
  Seb

-- 
Sebastien Vauban


Reply via email to