From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?B?RnJhbsOnb2lz?= Allisson Subject: Re: Headings in agenda view Date: Sun, 14 Oct 2012 13:56:30 +0200 Message-ID: <20121014115630.GA16006@debian> References: <5E17CCD4AACE3A4C8CFF411186AE819024E823AE@EXDAG30-N2.hostallapps.net> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:35759) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TNMnY-00048d-Jd for emacs-orgmode@gnu.org; Sun, 14 Oct 2012 07:56:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TNMnX-000075-I9 for emacs-orgmode@gnu.org; Sun, 14 Oct 2012 07:56:00 -0400 Received: from relay3-d.mail.gandi.net ([217.70.183.195]:37542) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TNMnX-00006y-BP for emacs-orgmode@gnu.org; Sun, 14 Oct 2012 07:55:59 -0400 Content-Disposition: inline In-Reply-To: <5E17CCD4AACE3A4C8CFF411186AE819024E823AE@EXDAG30-N2.hostallapps.net> 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: Renger van Nieuwkoop Cc: Org mode Le dimanche 14 oct 2012 =C3=A0 09:00:05 (+0000), Renger van Nieuwkoop a =C3= =A9crit : > Hi > =20 > I have the following agenda-view in Org-Mode > ("p" "Week plan" > ((tags-todo "Monday") > (tags-todo "Tuesday") > (tags-todo "Wednesday") > (tags-todo "Thursday") > (tags-todo "Friday") > (tags-todo "Saturday") > (tags-todo "Sunday")) > nil) > =20 > And would like to have a heading for every day. I tried using > (org-agenda-overriding-header "Monday"), > (org-agenda-overriding-header "Tuesday"), etc. > at several positions, but I did not manage, to get the headers. > Any hint would be more than welcome. > Cheers > Renger Hi Renger, The following works for me: ("p" "Week plan" ((tags-todo "Monday" ((org-agenda-overriding-header "Monday"))) (tags-todo "Tuesday" ((org-agenda-overriding-header "Tuesday"))) (tags-todo "Wednesday" ((org-agenda-overriding-header "Wednesday"))) (tags-todo "Thursday" ((org-agenda-overriding-header "Thursday"))) (tags-todo "Friday" ((org-agenda-overriding-header "Friday"))) (tags-todo "Saturday" ((org-agenda-overriding-header "Saturday"))) (tags-todo "Sunday" ((org-agenda-overriding-header "Sunday")))) ((org-agenda-compact-blocks t)) nil) PS: I have added compact block, just because I find it looks nicer; feel free to remove it! Best, Fran=C3=A7ois. --=20 http://francois.allisson.co