From mboxrd@z Thu Jan 1 00:00:00 1970 From: PT Subject: Re: schedule tasks Date: Mon, 7 Sep 2009 06:40:59 +0000 (UTC) Message-ID: References: <21gld463cmyd.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MkXuw-0007zl-HL for emacs-orgmode@gnu.org; Mon, 07 Sep 2009 02:41:34 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MkXur-0007yB-Mp for emacs-orgmode@gnu.org; Mon, 07 Sep 2009 02:41:33 -0400 Received: from [199.232.76.173] (port=35171 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MkXur-0007y5-Gt for emacs-orgmode@gnu.org; Mon, 07 Sep 2009 02:41:29 -0400 Received: from lo.gmane.org ([80.91.229.12]:55519) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MkXuq-0006tD-VG for emacs-orgmode@gnu.org; Mon, 07 Sep 2009 02:41:29 -0400 Received: from list by lo.gmane.org with local (Exim 4.50) id 1MkXuo-0003Zu-CX for emacs-orgmode@gnu.org; Mon, 07 Sep 2009 08:41:26 +0200 Received: from dsl51B792DF.pool.t-online.hu ([81.183.146.223]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 07 Sep 2009 08:41:21 +0200 Received: from spamfilteraccount by dsl51B792DF.pool.t-online.hu with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 07 Sep 2009 08:41:21 +0200 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 William Xu gmail.com> writes: > > Hi folks, > > I'm trying to do this: > > 1. schedule a TODO on THIS_DAY > 2. before THIS_DAY, don't show it in global todo list. So I have: > > (setq org-agenda-todo-ignore-scheduled t) > > 3. on(and after when not done) THIS_DAY, show it in global todo list > I use a similar setup. As I understand if you want items to appear on the date they are due you have to use the daily agenda. So I use a custom agenda which shows the agenda items and the todo list together: (setq org-agenda-custom-commands '(("h" "My Agenda & TODO" ((agenda "") (alltodo "home"))))) The agenda part is empty if there are no due items today and the regular todo items are under it. Invoke the agenda with M-1 prefix to show items only for today. It can be assigned to a keyboard macro, of course.