Home README About Me Index RSS Search for: #site-navigation #navbar #masthead .entry-header In this post we’ll build on the simple todo list that we put together previously and add schedules and deadlines to our tasks to build a powerful agenda. When adding a task (with C-c c t ) you can add a scheduled date to it with C-c C-s or a deadline date with C-c C-d , or both. These will pop up a calendar which you can navigate using shift and the arrow keys. I prefer to schedule all new tasks to today’s date as a default, so I update the org-capture-templates variable to ( setq org-capture-templates ' ( ( "t" "todo" entry ( file+headline "~/todo.org" "Tasks" ) "* TODO [#A] %?\nSCHEDULED: %(org-insert-time-stamp (org-read-date nil t \"+0d\"))\n" ) ) ) Now when you add a task, you will see a scheduled field like this ** TODO [#A] SCHEDULED: <20...