From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Sven Bretfeld" Subject: Viewing all entries of a file in Agenda Date: 10 Dec 2011 23:03:27 +0100 Message-ID: <877h24nky8.fsf@gmx.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([140.186.70.92]:57529) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RZV11-0002oF-Rr for emacs-orgmode@gnu.org; Sat, 10 Dec 2011 17:03:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RZV10-0005fZ-Q8 for emacs-orgmode@gnu.org; Sat, 10 Dec 2011 17:03:31 -0500 Received: from mi.ruhr-uni-bochum.de ([134.147.64.53]:58075 helo=mx4.rz.ruhr-uni-bochum.de) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1RZV10-0005fP-Gy for emacs-orgmode@gnu.org; Sat, 10 Dec 2011 17:03:30 -0500 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-org Hi all I have written an org-agenda-custom-command for a daily review of my dates and todos. It contains several todos and tags as block-agendas. The last block should tell me if there are new items to be refiled in a certain file which I use as an Inbox (synced from MobileOrg). I cannot find the proper command for this. ("D" "Daily Review" ((agenda "" ((org-agenda-ndays 1))) (todo "WAITING") (todo "DELEGATED") (tags "PROJECT") (stuck "") (tags "BIGROCK") (tags "MIT") (tags "OFFICE/NEXT") (tags "HOME/NEXT") (tags "PHONE/NEXT") (tags "READING/NEXT") (tags "WRITING/NEXT") (tags "" ((org-agenda-files '("~/Dropbox/myconf/from-mobile.org")))))) It is the last line that puzzles me. If I have it like above, every call of this agenda is interrupted by the question which tag I want to query for. Hitting RET does what I want, namely displaying all headlines of the file. How is that possible without Emacs asking me? The file can contain different todo-keywords and tags or none at all. I want to display everything. Thanks for a hint Sven