[O] Setting Refiling Targets

2012-07-19 Thread Varun Vats
Hi, I am trying to add to my refile target list a file that exists in a sub-directory of org-directory. I have tried to do this by concatenating the variable org-directory with the string containing the path to the file like so: (setq org-refile-targets '((nil :maxlevel . 9)

Re: [O] Setting Refiling Targets

2012-07-19 Thread Varun Vats
Hi Moritz, Thank you for the tip. That worked for me! -- Sincerely, Varun Vats Graduate Student University of Wisconsin, Madison mailvarunv...@gmail.com

Re: [O] Setting Refiling Targets

2012-07-19 Thread Moritz Ulrich
Try (setq org-refile-targets `((nil :maxlevel . 9) (org-agenda-files :maxlevel . 9) (,(concat org-directory /projects/project.org) :maxlevel . 9))) Notice the ` instead of ' and the ,. This feature is called 'quasiquote'. On Thu, Jul 19,