From mboxrd@z Thu Jan 1 00:00:00 1970 From: Charles Millar Subject: bug org-capture Date: Tue, 31 Jan 2017 08:32:00 -0500 Message-ID: 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]:33449) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cYYXn-0002Bk-FP for emacs-orgmode@gnu.org; Tue, 31 Jan 2017 08:32:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cYYXk-0003la-Al for emacs-orgmode@gnu.org; Tue, 31 Jan 2017 08:32:23 -0500 Received: from vms173025pub.verizon.net ([206.46.173.25]:38077) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cYYXk-0003kz-63 for emacs-orgmode@gnu.org; Tue, 31 Jan 2017 08:32:20 -0500 Received: from vz-proxy-m004.mx.aol.com ([64.236.83.6]) by vms173025.ctn.ui.verizon.net (Oracle Communications Messaging Server 7.0.5.32.0 64bit (built Jul 16 2014)) with ESMTPA id <0OKN00GPIC9DA230@vms173025.ctn.ui.verizon.net> for emacs-orgmode@gnu.org; Tue, 31 Jan 2017 07:32:02 -0600 (CST) 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" To: "emacs-orgmode@gnu.org" Until yesterday the following capture template worked. A recent fix may have caused another bug. (setq org-capture-templates ;;; tasks todo on a specific date, not appointments (append '(("t" "Todo entries") ("ts" "Scheduled" entry (file+headline "/mnt/Data/ActiveFiles/Diary.org" "TODOs") "* TODO %?%^{What do you want to do?} %^g %i\n SCHEDULED: %^{enter a timestamp}t\n\t:OTHERINFO:\n\t\t%^{Enter other pertinent info} %i\n\t:END:\n\t\tDate Entered %U\n" :empty-lines 1) ;;; tasks todo date is nice, but not earth shattering ("tt" "Target dates" entry (file+headline "/mnt/Data/ActiveFiles/Diary.org" "TODOs") "* TODO %?%^{What do you want to do?} %^g\n %i\ TARGETDATE: %^{enter a timestamp}t\n\t:OTHERINFO:\n\t\t%^{Enter other pertinent info} %i\n\t:END:\n\t\tDate Entered %U\n" :empty-lines 1) ;;; tasks with definite deadlines ("td" "Deadline" entry (file+headline "/mnt/Data/ActiveFiles/Diary.org" "TODOs") "* TODO %?%^{What do you want to do?} %^g\n %i\ DEADLINE: %^{enter a timestamp}t\n\t:OTHERINFO:\n\t\t%^{Enter other pertinent info} %i\n\t:END:\n\t\tDate Entered %U\n" :empty-lines 1) ;;; plain vanilla task todo's ("tp" "PlainTODO" entry (file+headline "/mnt/Data/ActiveFiles/Diary.org" "TODOs") "* TODO %?%^{What do you want to do?} %i\ %^{enter a timestamp}t %^g\n\t:OTHERINFO:\n\t\t%^{Enter other pertinent info} %i\n\t:END:\n\t\tDate Entered %U\n" :empty-lines 1)) org-capture-templates)) I also have a capture for entering my time worked on files snip ("s" "timeslip" table-line (file "/mnt/Data/ActiveFiles/timeslips.org") "\| %(org-read-date)\| %^{FileName} %i\| %^{Narrative} %i\| %^{Time} %i\| %^{Expense} %i" snip Today I called the capture for the TODOs "t", the sub items show up, however if I select "s" the capture goes to the timeslip capture. Org mode version 9.0.4 (release_9.0.4-252-g6b30de @ /usr/local/share/emacs/site-lisp/org-mode/lisp/) GNU Emacs 24.4.1 (x86_64-pc-linux-gnu, GTK+ Version 3.14.5) of 2015-03-07 on trouble, modified by Debian Charlie Millar