From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: POLL: Removing obsolete variables and features Date: Wed, 21 Feb 2007 09:28:22 +0100 Message-ID: References: <52D89C75FEE9444E8D9C016E3730098306CD87@chsa1036.share.beluni.net> Mime-Version: 1.0 (Apple Message framework v624) Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HJmpw-0008CH-PS for emacs-orgmode@gnu.org; Wed, 21 Feb 2007 03:28:28 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HJmpr-0008Ad-TC for emacs-orgmode@gnu.org; Wed, 21 Feb 2007 03:28:28 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HJmpr-0008AZ-Qx for emacs-orgmode@gnu.org; Wed, 21 Feb 2007 03:28:23 -0500 Received: from korteweg.uva.nl ([146.50.98.70]) by monty-python.gnu.org with esmtp (Exim 4.52) id 1HJmpr-0007Nh-FR for emacs-orgmode@gnu.org; Wed, 21 Feb 2007 03:28:23 -0500 In-Reply-To: <52D89C75FEE9444E8D9C016E3730098306CD87@chsa1036.share.beluni.net> 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: "Egli Christian (KIRO 43)" Cc: emacs-orgmode On Feb 21, 2007, at 9:11, Egli Christian ((KIRO 43)) wrote: > >> ;; FIXME: This variable could be removed, default nil >> (defcustom org-agenda-include-all-todo nil > > I am using this to see all the todos that I have not scheduled in my > agenda. Why would you want to remove it? What would the alternative be > if this variable was no longer? Always pressing C-u M-x org-agenda? Alternatives are: 1. C-u C-c a (as you mention above) 2. Call C-c a t whenever you want to look at your TODO entries. 3. Making a custom agenda command that includes both the TODO list and the agenda as two separate blocks. You may even redefine the "a" key, so that you get this still with `C-c a a': (setq org-agenda-custom-commands '(("a" "todo and agenda" ((alltodo) (agenda)) nil))) And of course I can leave that variable in - the simplification is minimal in this case. - Carsten