emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* bug org-capture
@ 2017-01-31 13:32 Charles Millar
  2017-01-31 21:53 ` Nicolas Goaziou
  0 siblings, 1 reply; 3+ messages in thread
From: Charles Millar @ 2017-01-31 13:32 UTC (permalink / raw)
  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/)\x01
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

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: bug org-capture
  2017-01-31 13:32 bug org-capture Charles Millar
@ 2017-01-31 21:53 ` Nicolas Goaziou
  2017-02-01  0:26   ` Charles Millar
  0 siblings, 1 reply; 3+ messages in thread
From: Nicolas Goaziou @ 2017-01-31 21:53 UTC (permalink / raw)
  To: Charles Millar; +Cc: emacs-orgmode@gnu.org

Hello,

Charles Millar <millarc@verizon.net> 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

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: bug org-capture
  2017-01-31 21:53 ` Nicolas Goaziou
@ 2017-02-01  0:26   ` Charles Millar
  0 siblings, 0 replies; 3+ messages in thread
From: Charles Millar @ 2017-02-01  0:26 UTC (permalink / raw)
  To: emacs-orgmode



On 01/31/2017 04:53 PM, Nicolas Goaziou wrote:
> Hello,
>
> Charles Millar <millarc@verizon.net> writes:
>
>> Until yesterday the following capture template worked. A recent fix
>> may have caused another bug.
>> snip
> Fixed. Thank you.
>
> Regards,
>
Works fine. thank you.

Charlie Millar

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-02-01  0:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-31 13:32 bug org-capture Charles Millar
2017-01-31 21:53 ` Nicolas Goaziou
2017-02-01  0:26   ` Charles Millar

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).