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"))


_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to