From mboxrd@z Thu Jan 1 00:00:00 1970 From: jorge.alfaro-murillo@yale.edu (Jorge A. Alfaro-Murillo) Subject: Re: Org-mode Habit with Varying Description Date: Mon, 20 Oct 2014 12:02:04 -0400 Message-ID: <87egu2d91f.fsf@yale.edu> References: Mime-Version: 1.0 Content-Type: text/plain; format=flowed Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40282) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XgFRK-00010X-Ex for emacs-orgmode@gnu.org; Mon, 20 Oct 2014 12:04:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XgFR8-0005oC-4D for emacs-orgmode@gnu.org; Mon, 20 Oct 2014 12:04:10 -0400 Received: from plane.gmane.org ([80.91.229.3]:51560) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XgFR7-0005nx-Tq for emacs-orgmode@gnu.org; Mon, 20 Oct 2014 12:03:58 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1XgFR4-0000ix-FL for emacs-orgmode@gnu.org; Mon, 20 Oct 2014 18:03:54 +0200 Received: from nat-130-132-173-32.central.yale.edu ([130.132.173.32]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 20 Oct 2014 18:03:54 +0200 Received: from jorge.alfaro-murillo by nat-130-132-173-32.central.yale.edu with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 20 Oct 2014 18:03:54 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Daya Atapattu writes: > Is there a way to create a habit that picks-up the description > from a list? > > I like to schedule studying a book: It would be scheduled as > "Read pages 100-125." Then the next day it should read "Read > pages 126-150." The description of the habit varies; org-mode > picks that up sequentially from a list. Maybe you want to take a look at TODO dependencies (info "(org) TODO dependencies") set `org-enforce-todo-dependencies' to t, and do something like #+BEGIN_EXAMPLE * TODO Read book :PROPERTIES: :ORDERED: t :END: ** TODO Pages 1-150 ** TODO Pages 151-300 #+END_EXAMPLE Then when closing one of the sub headlines, schedule the next one. Best, -- Jorge.