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
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
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")
;;
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
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")
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