From mboxrd@z Thu Jan 1 00:00:00 1970 From: jorge.alfaro-murillo@yale.edu (Jorge A. Alfaro-Murillo) Subject: Re: Sparse tree for undated TODOs, or hierachical agenda? Date: Tue, 21 Apr 2015 10:10:16 -0400 Message-ID: <87r3rdzi5z.fsf@yale.edu> References: <87fv7yhzx3.fsf@vostro.rath.org> Mime-Version: 1.0 Content-Type: text/plain; format=flowed Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56864) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YkYsy-00012M-3Z for emacs-orgmode@gnu.org; Tue, 21 Apr 2015 10:10:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YkYss-0004n0-Pv for emacs-orgmode@gnu.org; Tue, 21 Apr 2015 10:10:47 -0400 Received: from plane.gmane.org ([80.91.229.3]:50329) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YkYss-0004mp-It for emacs-orgmode@gnu.org; Tue, 21 Apr 2015 10:10:42 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1YkYsr-0004D3-1u for emacs-orgmode@gnu.org; Tue, 21 Apr 2015 16:10:41 +0200 Received: from nat-130-132-173-151.central.yale.edu ([130.132.173.151]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 21 Apr 2015 16:10:41 +0200 Received: from jorge.alfaro-murillo by nat-130-132-173-151.central.yale.edu with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 21 Apr 2015 16:10:41 +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 Hi, Nikolaus. Nikolaus Rath writes: > Hello, > > I'm starting to like orgmode more and more. Thanks for working > on this! > > However, for me the global todo list in the Agenda very hard to > digest (even when excluding sublevels), so I'd rather have a > view that conserves the document structure. If you want to restrict to your current document before building the agenda use '<', so if 'C-c a' calls your agenda (suggested org key), then you can do 'C-c a < a' to get the agenda restricted to the buffer that you are in. > Is there a way to create a sparse tree that shows only undated > TODOs (i.e., excludes anything that scheduled or has a > deadline)? I do not know what you mean by sparse tree, but this excludes anything scheduled or with a deadline from the global todo list: #+BEGIN_SRC emacs-lisp (setq org-agenda-todo-ignore-scheduled 'all) (setq org-agenda-todo-ignore-deadlines 'all) #+END_SRC Instead of 'all you can also use 'past or 'future to exclude only scheduled and deadlines from the past or the future, respectively. Best, -- Jorge.