From mboxrd@z Thu Jan 1 00:00:00 1970 From: Markus Heller Subject: Displaying property values in agenda search result Date: Mon, 14 Mar 2016 22:24:40 +0000 (UTC) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52488) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1afav9-0002jt-GE for emacs-orgmode@gnu.org; Mon, 14 Mar 2016 18:25:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1afav6-0001sr-8m for emacs-orgmode@gnu.org; Mon, 14 Mar 2016 18:25:03 -0400 Received: from plane.gmane.org ([80.91.229.3]:48745) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1afav6-0001sg-1X for emacs-orgmode@gnu.org; Mon, 14 Mar 2016 18:25:00 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1afav4-0007FU-5g for emacs-orgmode@gnu.org; Mon, 14 Mar 2016 23:24:58 +0100 Received: from 142.103.74.64 ([142.103.74.64]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Mar 2016 23:24:58 +0100 Received: from hellerm2 by 142.103.74.64 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Mar 2016 23:24:58 +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: emacs-orgmode@gnu.org Hello, how can I display property values in the agenda, more specifically, in the results of an agenda search? Consider the following example: * Some Project :PROPERTIES: :Project: 1234 :END: ** TODO Some Task :PROPERTIES: :CATEGORY: foo :END: *** NEXT Some subtask I search using the following in my .emacs as part of a custom agenda command: ("i" "Text here" tags "CATEGORY=\"foo\"" ((org-agenda-overriding-header "Header here"))) This search displays Some Task and Some subtask as expected, but how can I also display 1234 as value of the property Project for both Some Task as well as Some subtask? Not sure if this is relevant, but my .emacs includes (setq org-use-property-inheritance (quote ("Project"))) Thanks Markus