From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pete Ley Subject: Re: How not to show repetitive tasks in the TODO items of agenda view Date: Thu, 23 Jan 2014 15:46:09 -0800 Message-ID: <87zjmmtg72.fsf@enterprise.sectorq.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43395) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W6Tyw-0006nV-7p for emacs-orgmode@gnu.org; Thu, 23 Jan 2014 18:46:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W6Tyn-0003Nt-R2 for emacs-orgmode@gnu.org; Thu, 23 Jan 2014 18:46:46 -0500 Received: from mail-pd0-x229.google.com ([2607:f8b0:400e:c02::229]:36084) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W6Tyn-0003Na-I9 for emacs-orgmode@gnu.org; Thu, 23 Jan 2014 18:46:37 -0500 Received: by mail-pd0-f169.google.com with SMTP id v10so2424471pde.0 for ; Thu, 23 Jan 2014 15:46:35 -0800 (PST) In-Reply-To: (Chaitanya Krishna's message of "Thu, 23 Jan 2014 12:03:03 +0100") 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: Chaitanya Krishna Cc: emacs-orgmode@gnu.org > The problem is that all the birthdays and repetitive tasks are cluttering my > view in agenda TODO items (C-c a t). > > Is it possible to make these items show up only in the agenda view (C-c a a) > and not in the TODO items list (C-c a t) You could try define a custom agenda command to show all TODO items except those with deadlines. (setq org-agenda-custom-commands '(("t" "TODOs without deadlines" alltodo "" ((org-agenda-skip-function '(org-agenda-skip-entry-if 'deadline)))))) Try that for a start. Pete