From: Nick Dokos <ndokos@gmail.com>
To: emacs-orgmode@gnu.org
Subject: Re: Multiple Recursive Directories with org-agenda-files
Date: Tue, 15 Apr 2014 16:01:22 -0400 [thread overview]
Message-ID: <877g6q9xbh.fsf@alphaville.bos.redhat.com> (raw)
In-Reply-To: 8761ma1l0t.fsf@quasar.esben-stien.name
Esben Stien <b0ef@esben-stien.name> writes:
> "Julian M. Burgos" <julian@hafro.is> writes:
>
>> (load-library "find-lisp")
>> (add-hook 'org-agenda-mode-hook (lambda ()
>> (setq org-agenda-files
>> (find-lisp-find-files "/home/julian/Documents" "\.org$"))
>> ))
>
> This is not a multiple directories examples, so I tried:
>
> (add-hook 'org-agenda-mode-hook (lambda ()
> (setq org-agenda-files
(append
> (find-lisp-find-files "~/foo/bar" "\.org$")
> (find-lisp-find-files "~/hukarz/quux" "\.org$")))))
>
> , but that just threw a lisp error.
You need to append all the subsequent lists onto the first list,
creating a big list which can be setq'ed to org-agenda-files.
What you tried to do is the equivalent of
(setq foo '(1 2 3) '(4 5 6))
which is not legal lisp - do C-h f setq RET to find out why.
Nick
prev parent reply other threads:[~2014-04-15 20:01 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-04-14 23:00 Multiple Recursive Directories with org-agenda-files Esben Stien
2014-04-15 8:43 ` Julian M. Burgos
2014-04-15 18:54 ` Esben Stien
2014-04-15 20:01 ` Nick Dokos [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=877g6q9xbh.fsf@alphaville.bos.redhat.com \
--to=ndokos@gmail.com \
--cc=emacs-orgmode@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.