From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Re: Entries title in agenda view Date: Mon, 21 Jun 2010 14:59:31 -0400 Message-ID: <87eig0rz3g.fsf@fastmail.fm> References: <87sk4gfh2z.fsf@keller.adm.naquadah.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=36765 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OQm8m-0000r9-OO for emacs-orgmode@gnu.org; Mon, 21 Jun 2010 14:54:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OQm8l-0004VQ-CV for emacs-orgmode@gnu.org; Mon, 21 Jun 2010 14:54:40 -0400 Received: from out1.smtp.messagingengine.com ([66.111.4.25]:36138) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OQm8l-0004VL-Ak for emacs-orgmode@gnu.org; Mon, 21 Jun 2010 14:54:39 -0400 In-Reply-To: <87sk4gfh2z.fsf@keller.adm.naquadah.org> (Julien Danjou's message of "Mon, 21 Jun 2010 19:09:24 +0200") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Julien Danjou Cc: emacs-orgmode@gnu.org Julien Danjou writes: > I did not find what I want in the documentation, so here I am. > > I've entries in the form: > * Customers > ** MyCustomer > *** Project > **** Meeting to do some stuff > <2010-06-21 Mon> > > > In the agenda view (C-c a a) I see > > Monday 21 June 2010 > Meeting to do some stuff By default, the agenda view includes the CATEGORY property. Have you by chance customized org-agenda-prefix-format? > Problem is that i really lacks of context. I've to scroll down to the > entry to read the echo area. > > Is there anyway to change the entry text to include its parent headings, > or part of them? A couple of solutions here: 1. Add a category (assuming org-agenda-prefix-format) is set to display categories. --8<---------------cut here---------------start------------->8--- * Customers ** MyCustomer :PROPERTIES: :CATEGORY: mycustomer :END: *** Project **** Meeting to do some stuff <2010-06-21 Mon> --8<---------------cut here---------------end--------------->8--- --8<---------------cut here---------------start------------->8--- Day-agenda (W25): Monday 21 June 2010 W25 mycustomer: Meeting to do some stuff --8<---------------cut here---------------end--------------->8--- 2. Use tags and set the agenda to display inherited tags: (setq org-agenda-show-inherited-tags t) --8<---------------cut here---------------start------------->8--- * Customers ** MyCustomer :mycustomer: :PROPERTIES: :CATEGORY: mycustomer :END: *** Project :projectA: **** Meeting to do some stuff <2010-06-21 Mon> --8<---------------cut here---------------end--------------->8--- --8<---------------cut here---------------start------------->8--- Day-agenda (W25): Monday 21 June 2010 W25 mycustomer: Meeting to do some stuff :mycustomer:projectA:: --8<---------------cut here---------------end--------------->8--- Best, Matt