From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: bug org-capture Date: Tue, 31 Jan 2017 22:53:00 +0100 Message-ID: <87inounbgj.fsf@nicolasgoaziou.fr> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45737) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cYgMU-0006yg-Cw for emacs-orgmode@gnu.org; Tue, 31 Jan 2017 16:53:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cYgMR-0001xB-9P for emacs-orgmode@gnu.org; Tue, 31 Jan 2017 16:53:14 -0500 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:49175) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cYgMR-0001wq-2l for emacs-orgmode@gnu.org; Tue, 31 Jan 2017 16:53:11 -0500 In-Reply-To: (Charles Millar's message of "Tue, 31 Jan 2017 08:32:00 -0500") 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: Charles Millar Cc: "emacs-orgmode@gnu.org" Hello, Charles Millar writes: > 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. Fixed. Thank you. Regards, -- Nicolas Goaziou