From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alexis Roda Subject: Capture template expansion Date: Sun, 24 Aug 2014 19:41:05 +0200 Message-ID: <53FA23B1.7040104@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56772) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XLbn1-0001gp-9K for emacs-orgmode@gnu.org; Sun, 24 Aug 2014 13:41:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XLbmv-0007aM-QP for emacs-orgmode@gnu.org; Sun, 24 Aug 2014 13:41:15 -0400 Received: from mail-wg0-x22e.google.com ([2a00:1450:400c:c00::22e]:53593) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XLbmv-0007aF-Jn for emacs-orgmode@gnu.org; Sun, 24 Aug 2014 13:41:09 -0400 Received: by mail-wg0-f46.google.com with SMTP id m15so12160553wgh.17 for ; Sun, 24 Aug 2014 10:41:08 -0700 (PDT) Received: from [192.168.1.10] (206.Red-81-39-198.dynamicIP.rima-tde.net. [81.39.198.206]) by mx.google.com with ESMTPSA id fy1sm22574660wic.6.2014.08.24.10.41.06 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 24 Aug 2014 10:41:07 -0700 (PDT) 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 Hi all, org newbie here, neither proficient with org nor english, please be patient. I'm having a hard time figuring how to gather property values with completion from a capture template. ----------------8<-------------[ .emacs ]-------------------- (setq org-capture-templates '(("t" "Todo" entry (file+headline "gtd.org" "Tasks") "* TODO %? :PROPERTIES: :TIPUS: %^{TIPUS}p :END: "))) ----------------8<------------------------------------------- ----------------8<-------------[ gtd.org ]------------------- #+PROPERTY: TIPUS_ALL foo bar * Tasks ----------------8<------------------------------------------- gtd.org defines the allowed values for TIPUS but M-x org-capture does not provides completion when evaluating %^{TIPUS}p. After expanding the template, C-c C-x p does provide completion. That's intentional? a bug in my setup? TIA