From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stig Brautaset Subject: Re: show only top level TODO in agenda and ignore sub level TODOS in agenda? Date: Sat, 24 Dec 2016 17:20:47 +0000 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42576) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cKq0D-0007Zt-Pi for emacs-orgmode@gnu.org; Sat, 24 Dec 2016 12:21:02 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cKq0A-0001ei-LY for emacs-orgmode@gnu.org; Sat, 24 Dec 2016 12:21:01 -0500 Received: from relay5-d.mail.gandi.net ([2001:4b98:c:538::197]:42024) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cKq0A-0001eV-F9 for emacs-orgmode@gnu.org; Sat, 24 Dec 2016 12:20:58 -0500 In-reply-to: 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" To: Xebar Saram Cc: org mode Xebar Saram writes: > Thx stig. while thats an option i would prefer to keep the actual TODOS and > not use lists for this Another option is to use a different keyword, for example "PROJECT", for things that have sub-TODOs, e.g. ,---- | * PROJECT start writing paper | ** TODO Collect data | ** TODO add references `---- For that to work you may want to put something like this at the top of the file: ,---- | #+TODO: TODO(t) PROJECT(p) | DONE(d@) CANCELLED(c@) `---- Finally, a third option is to add a TODO (or TOPLEVEL) *TAG* and do something like this at the top: ,---- | #+TAGS: { TOPLEVEL(t) SUBTASK(t) } `---- Then, you can do ,---- | * TODO start writing paper :TOPLEVEL: | ** TODO Collect data :SUBTASK: | ** TODO add references :SUBTASK: `---- You can filter for :TOPLEVEL: or :SUBTASK: from the agenda view. Of course, you don't need both and it may be easier to just add one or the other. Hope this helps! Stig