From a55dd5a9e62f99ce893c3570ff9f5b45108097d7 Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Wed, 18 Feb 2009 15:51:51 +0100 Subject: [PATCH] Docs: Mention more variables in the manual. The variables `org-agenda-todo-ignore-deadlines' and `org-agenda-todo-ignore-with-date, and `org-agenda-tags-todo-honor-ignore-options' are now all mentioned in the docs. --- doc/ChangeLog | 5 +++++ doc/org.texi | 22 ++++++++++++++-------- lisp/ChangeLog | 5 +++++ lisp/org-agenda.el | 9 ++++++--- 4 files changed, 30 insertions(+), 11 deletions(-) diff --git a/doc/ChangeLog b/doc/ChangeLog index a55c57f0d..1fcca2b7c 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,8 @@ +2009-02-18 Carsten Dominik + + * org.texi (Global TODO list, Matching tags and properties): + Mention more variables. + 2009-02-15 Carsten Dominik * org.texi (Checkboxes): Update to changed command behavior. diff --git a/doc/org.texi b/doc/org.texi index de371336d..5a25ae4d6 100644 --- a/doc/org.texi +++ b/doc/org.texi @@ -6067,10 +6067,14 @@ it more compact: @itemize @minus @item @vindex org-agenda-todo-ignore-scheduled -Some people view a TODO item that has been @emph{scheduled} for -execution (@pxref{Timestamps}) as no longer @emph{open}. Configure the -variable @code{org-agenda-todo-ignore-scheduled} to exclude scheduled -items from the global TODO list. +@vindex org-agenda-todo-ignore-deadlines +@vindex org-agenda-todo-ignore-with-date +Some people view a TODO item that has been @emph{scheduled} for execution or +have a @emph{deadline} (@pxref{Timestamps}) as no longer @emph{open} +Configure the variables @code{org-agenda-todo-ignore-scheduled}, +@code{org-agenda-todo-ignore-deadlines}, and/or +@code{org-agenda-todo-ignore-with-date} to exclude such items from the +global TODO list. @item @vindex org-agenda-todo-list-sublevels TODO items may have sublevels to break up the task into subtasks. In @@ -6101,10 +6105,12 @@ define a custom command for it (@pxref{Agenda dispatcher}). @kindex C-c a M @item C-c a M @vindex org-tags-match-list-sublevels -Like @kbd{C-c a m}, but only select headlines that are also TODO items -and force checking subitems (see variable -@code{org-tags-match-list-sublevels}). Matching specific TODO keywords -together with a tags match is also possible, see @ref{Tag searches}. +@vindex org-agenda-tags-todo-honor-ignore-options +Like @kbd{C-c a m}, but only select headlines that are also TODO items and +force checking subitems (see variable @code{org-tags-match-list-sublevels}). +To exclude scheduled/deadline items, see the variable +@code{org-agenda-tags-todo-honor-ignore-options}. Matching specific TODO +keywords together with a tags match is also possible, see @ref{Tag searches}. @end table The commands available in the tags list are described in @ref{Agenda diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5e228ecea..e72150a16 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,10 @@ 2009-02-18 Carsten Dominik + * org-agenda.el (org-agenda-todo-ignore-with-date) + (org-agenda-todo-ignore-scheduled) + (org-agenda-todo-ignore-deadlines): Mention the variable + `org-agenda-tags-todo-honor-ignore-options' in the docstring. + * org.el (org-get-wdays): Find the warning period also if it is in the wrong place. (org-ido-completing-read): Provide the correct arguments to diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 6aefa7196..bcf31d273 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -454,7 +454,8 @@ You can use this if you prefer to mark mere appointments with a TODO keyword, but don't want them to show up in the TODO list. When this is set, it also covers deadlines and scheduled items, the settings of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines' -will be ignored." +will be ignored. +See also the variable `org-agenda-tags-todo-honor-ignore-options'." :group 'org-agenda-skip :group 'org-agenda-todo-list :type 'boolean) @@ -463,7 +464,8 @@ will be ignored." "Non-nil means, don't show scheduled entries in the global todo list. The idea behind this is that by scheduling it, you have already taken care of this item. -See also `org-agenda-todo-ignore-with-date'." +See also `org-agenda-todo-ignore-with-date'. +See also the variable `org-agenda-tags-todo-honor-ignore-options'." :group 'org-agenda-skip :group 'org-agenda-todo-list :type 'boolean) @@ -472,7 +474,8 @@ See also `org-agenda-todo-ignore-with-date'." "Non-nil means, don't show near deadline entries in the global todo list. Near means closer than `org-deadline-warning-days' days. The idea behind this is that such items will appear in the agenda anyway. -See also `org-agenda-todo-ignore-with-date'." +See also `org-agenda-todo-ignore-with-date'. +See also the variable `org-agenda-tags-todo-honor-ignore-options'." :group 'org-agenda-skip :group 'org-agenda-todo-list :type 'boolean) -- 2.11.4.GIT