I have multiple org files in my Dropbox directory. I wanted to add all of them into my org-agenda. So as normally prescribed I used org-agenda-files
. Infact I'm adding the the part of my .emacs that corresponds to org-mode setup below
;; ############ ORG-MODE ####################
;; ## To enable shift - arrow mode for navigation (does not work in CUA mode)
(require 'org)
(setq org-support-shift-select t)
(setq org-todo-keywords
'((sequence "TODO(t)" "STARTED(s)" "ISSUE(p)" "INPUTNEEDED(i)" "VERIFY(v)" "|" "SCOPECHANGE(c)" "DONE(d)" "DELEGATED(o)")))
;; To hightlight code blocks ** SO Link: https://stackoverflow.com/questions/10642888/syntax-highlighting-within-begin-src-block-in-emacs-orgmode-not-working **
(setq org-src-fontify-natively t)
(setq org-directory "~/orgFiles")
(setq org-mobile-inbox-for-pull "~/orgFiles/from-mobile.org")
(setq org-mobile-directory "~/Apps/mobileorg")
;; ## Make RefTeX work in org-mode
;; ## https://emacs.stackexchange.com/questions/3375/loading-bibtex-file-in-org-mode-file
(setq org-latex-pdf-process '("texi2dvi -p -b -V %f"))
(define-key org-mode-map (kbd "C-c [") 'org-reftex-citation)
(setq org-agenda-files '("~/Professional"))
I also verified that the variable is getting set by Performing M-x customize-variable org-agenda-files
. Now when I perform M-x org-agenda t
. I get the following output
Global list of TODO items of type: ALL
Available with `N r': (0)[ALL]
I have numerous TODO in the org-files in the folder and I dont know why they dont get reported in the org-agenda