如何在日程视图中显示NEXT操作项,然后显示TODO项

时间:2011-10-10 14:14:03

标签: org-mode

我想配置一个自定义日程视图,显示NEXT项目,后跟TODO项目。目前,所有TODO项目和NEXT项目都在议程视图中混合使用。

完成手册后,我遇到了变量

org-agenda-custom-commands

似乎可以完成这项工作,但似乎它可以对项目的单个TODO状态起作用。如何配置agend视图以显示NEXT项目,然后显示TODO项目。

1 个答案:

答案 0 :(得分:2)

您需要使用org-agend-sorting-strategy。当todo-state-up被定义为自定义关键字时,NEXT可能会做到这一点,但我肯定不知道。否则,用户定义的排序应该可以解决问题。

来自worg的这个片段应该更清楚:

(setq org-agenda-custom-commands 
      '(
      ("c" "Desk Work" tags-todo "" ;; (1) (2) (3) (4)
           ((org-agenda-files '("~/org/widgets.org" "~/org/clients.org")) ;; leave blank for configured default
           (org-agenda-sorting-strategy '(todo-state-down))) ;; fiddle with the setting here
         )
        ;; ...other commands here
        ))