Re: [O] Multiple capture templates in file

2015-10-06 Thread tenspd137 .
So - I figured it out. I wanted to create a list that ultimatley had the form: '(template template sub-menu-label sub-menu-template) In the scratch buffer, I found I was creating ((("p" "product") ("pt" "Product - Todo" entry (file+headline ... "Tasks") "* TODO %?")) ("t" "Todo" entry (file+hea

Re: [O] Multiple capture templates in file

2015-10-06 Thread tenspd137 .
One thought I need to try either pushing one item at a time or concatenation the list of options. I'll try it when I get a chance. Playtime is over for now. Thanks for all help and suggestions so far. C On Oct 6, 2015 5:43 PM, "tenspd137 ." wrote: > I can do the following in .emacs > > (setq

Re: [O] Multiple capture templates in file

2015-10-06 Thread tenspd137 .
I can do the following in .emacs (setq org-capture-templates '(("t" "Todo" entry (file+headline (concat org-directory "/default.org") "Tasks") "* TODO %?") ("j" "Journal" entry (file+datetree (concat org-directory "/journal.org")) "* %?\nEntered on %U\n") ;;

Re: [O] Multiple capture templates in file

2015-10-06 Thread tenspd137 .
Marco - Thanks for the reply. "How could anyone tell if you don't show your attempt?" - Good point. Wasn't thinking there. First I will try what you have suggested since you were kind enough to create the code, and if I can't get that working, I'll show what I tried and also go back and re-create

Re: [O] Multiple capture templates in file

2015-10-06 Thread Subhan Michael Tindall
add-to-list works fine for me, like this: (taken straight of my emacs.org file) #+BEGIN_SRC emacs-lisp (add-to-list 'org-capture-templates '("J" "log job or activity to date tree for UE application" (file+datetree "~/Dropbox/orgzly/ jobs.org")

Re: [O] Multiple capture templates in file

2015-10-06 Thread Marco Wahl
Hi! "tenspd137 ." writes: > I am trying to figure out how to store multiple capture templates in a > file, have several files of related templates, and then load all the > files stored in a directory. For example, lets say I have two > projects at work WorkProject1 and WorkProject2. Then I hav