From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alexander Baier Subject: Re: using Agenda org-agenda-files variable Date: Fri, 10 Jan 2014 13:45:14 +0100 Message-ID: <87vbxshup1.fsf@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53304) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W1bT3-0006cf-3C for emacs-orgmode@gnu.org; Fri, 10 Jan 2014 07:45:45 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W1bSz-0001hJ-0r for emacs-orgmode@gnu.org; Fri, 10 Jan 2014 07:45:41 -0500 Received: from mail-ee0-x233.google.com ([2a00:1450:4013:c00::233]:57589) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W1bSy-0001hC-Q1 for emacs-orgmode@gnu.org; Fri, 10 Jan 2014 07:45:36 -0500 Received: by mail-ee0-f51.google.com with SMTP id b15so1911388eek.38 for ; Fri, 10 Jan 2014 04:45:35 -0800 (PST) In-Reply-To: (Renato Pontefice's message of "Fri, 10 Jan 2014 12:21:19 +0100") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Renato Pontefice Cc: emacs-orgmode@gnu.org 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