On 2014-01-10 12:21 Renato Pontefice wrote:
[...]
> (setq org-agenda-files (list "~/org/work.org"
> "~/org/school.org"
> "~/org/home.org"))
[...]
> I have on my 1.org the following line:
> *** configure
> SCHEDULED: <2014-01-08 mer>
>
> So, I'm expecting, that i could find at least this TODO line on the Agenda.
> But nothing...
[...]
I did not take a look at the tutorial you mentioned, but I would guess
that the file list ("~/org/work.org" "~/org/school.org" ...) was only
given as an example.
If you want entries from your 1.org file to show up in the agenda, you
have to add that file to `org-agenda-files'. Org mode will go through
all the files in that list and buid the agenda from the entries it finds
in those.
So your setq should look like this:
#+begin_src elisp
(setq org-agenda-files (list "~/org/1.org"))
#+end_src
This assumes, that your 1.org is located under ~/org.
HTH,
--
Alexander Baier