From mboxrd@z Thu Jan 1 00:00:00 1970 From: Deric Bytes Subject: SOLVED: org TODO keywords not showing up Date: Thu, 9 Apr 2009 11:42:08 +0100 Message-ID: <59b700510904090342p36ef50f5ic6ca311bfb61c886@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Lrri3-0002Cb-Ny for emacs-orgmode@gnu.org; Thu, 09 Apr 2009 06:42:15 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Lrrhz-0002BL-4q for emacs-orgmode@gnu.org; Thu, 09 Apr 2009 06:42:15 -0400 Received: from [199.232.76.173] (port=38702 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Lrrhy-0002BH-VB for emacs-orgmode@gnu.org; Thu, 09 Apr 2009 06:42:10 -0400 Received: from mail-bw0-f167.google.com ([209.85.218.167]:51458) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Lrrhy-0000SS-AL for emacs-orgmode@gnu.org; Thu, 09 Apr 2009 06:42:10 -0400 Received: by bwz11 with SMTP id 11so567282bwz.42 for ; Thu, 09 Apr 2009 03:42:09 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org I set a org file to load as my initial page, in my .emacs file (find-file "~/note-keeping-log-090331.org") I also defined my own set of TODO tags. However they were not showing in my initial page. Problem was my file was being loaded before the TODO tags were set The solution was to delay the loading of my file until my .emacs file was loaded (eval-after-load ".emacs" '(find-file "~/note-keeping-log-090331.org"))