Next: , Previous: Bare-Bones Planning with Plan Pages, Up: Sample Configuration Files


9.4.4 Tasks on Plan Pages with Some Day Pages

If most of your tasks are associated with plan pages but you want to schedule some tasks on day pages, you can leave day pages on (default) and then write a function that turns off day pages. For example, the following code snippet turns off day pages for task creation from buffers.

     (require 'planner)
     
     (defun my-planner-create-task-from-buffer ()
       "Call `planner-create-task-from-buffer', but without dates."
       (interactive)
       (let ((planner-use-day-pages nil))
         (call-interactively 'planner-create-task-from-buffer)))