Julien Fantin wrote: >Hi folks, >I'v been trying to setup an org-capture template using a symbol as the file >target, but this raises an error. >Someone on IRC mentionned this is probably a bug, but I'm not experienced >enough to be sure I'm not simply misusing it...
>Here is the bit of config in question:
>** Templates
>#+BEGIN_SRC emacs-lisp
>(setq org-capture-templates
> `(
> ("t" "Task" entry
> (file+headline organizer "Tasks")
> "* TODO %?\n%U")
> ("j" "Journal" entry
> (file+datetree "~/org/journal.org")
> "* %?\nEntered on %U\n %i\n %a")
> ))
>#+END_SRC
You already backquote the template list so you've just to but the
special marker , (comma) in front of organizer and it gets evaluated.
HTH
-- David
--
OpenPGP... 0x99ADB83B5A4478E6
Jabber.... [email protected]
Email..... [email protected]
pgpBqIjp2NXfN.pgp
Description: PGP signature
_______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. [email protected] http://lists.gnu.org/mailman/listinfo/emacs-orgmode
