【问题标题】:Get a view of scheduled tasks excluding some TODO states on Org Mode获取计划任务的视图,不包括组织模式下的一些 TODO 状态
【发布时间】:2017-08-24 20:06:49
【问题描述】:

这是我使用的待办事项状态(在 GNU Emacs 24.5.1 上):

(setq org-todo-keywords '((type "TODO" "NEXT" "DONE" "STARTED" "WAITING" "FROZEN" "REFERENCE" "CANCELLED" "DELEGATED")))

我想创建一个自定义视图,显示当前一周(接下来 8 天)的所有计划任务,其中 TODO、NEXT、STARTED、WAITING、FROZEN、REFERENCE 或 DELEGATED 作为 todo 状态。

【问题讨论】:

    标签: emacs org-mode gtd


    【解决方案1】:
    (setq org-agenda-custom-commands
      '(("8" "Scheduled this week" 
         ((agenda "" 
           ((org-agenda-start-day "+0")
            (org-agenda-span 8)        
            (org-agenda-skip-function '(org-agenda-skip-entry-if 'todo '("DONE" "CANCELLED")))
           )
         ))
       ))
    )
    

    【讨论】:

      猜你喜欢
      • 2016-03-20
      • 2012-06-27
      • 2016-07-20
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多