From mboxrd@z Thu Jan 1 00:00:00 1970 From: Giulio Petrucci Subject: Removing headers from custom agenda view Date: Fri, 6 Feb 2015 15:22:45 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38208) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YJjog-0000JM-Cx for emacs-orgmode@gnu.org; Fri, 06 Feb 2015 09:23:31 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YJjod-0000al-4c for emacs-orgmode@gnu.org; Fri, 06 Feb 2015 09:23:30 -0500 Received: from mail-la0-f46.google.com ([209.85.215.46]:41493) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YJjoc-0000ad-US for emacs-orgmode@gnu.org; Fri, 06 Feb 2015 09:23:27 -0500 Received: by labgf13 with SMTP id gf13so1421461lab.8 for ; Fri, 06 Feb 2015 06:23:25 -0800 (PST) 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 Hello there, I'm playing a bit with the custom agenda view and have ended up with something like: (setq org-agenda-custom-commands '(("b" "Test" (tags-todo "STARTED" ((org-agenda-overriding-header "Started"))) (tags-todo "WAITING" ((org-agenda-overriding-header "Waiting")))))) I would like to have no header at all, like Task: STARTED task1 Task: STARTED task3 agenda: WAITING task12 is it possible? Setting an empty value for org-agenda-overriding-header ends up in displaying an empty line, while setting NIL ends up with a default header. Thanks in advance, Giulio --