Emacs组织模式:如何查找没有指定截止日期的所有TODO

时间:2013-06-08 20:02:50

标签: search emacs org-mode

在Emacs组织模式中,我知道我可以调用议程“匹配”视图(使用C-a m),然后使用以下搜索字符串查找截止日期设置为今天的所有TODO项目: / p>

DEADLINE="<today>"

但是,我想找到我的TODO列表中没有设置任何截止日期的所有项目。我搜索过但似乎无法找到答案;以下似乎也不起作用:

DEADLINE=""

如何搜索未指定DEADLINE的所有TODO?

(同样适用于查找尚未安排的项目,但我猜测解决方案将是相同的。)

2 个答案:

答案 0 :(得分:6)

您可以使用

  

-DEADLINE = {。} +

  

-SCHEDULED = {。} +

搜索没有DEADLINE / SCHEDULED标记且其中包含任何内容的项目 - 即,未设置任何计划或截止日期。 curlies用于标识正则表达式(在这种情况下匹配比空字符串更长的任何内容)。

例如,我使用以下内容:

 (setq org-agenda-custom-commands
       `(;; match those tagged with :inbox:, are not scheduled, are not DONE.
         ("ii" "[i]nbox tagged unscheduled tasks" tags "+inbox-SCHEDULED={.+}/!+TODO|+STARTED|+WAITING")))

参考:http://orgmode.org/manual/Matching-tags-and-properties.html

答案 1 :(得分:0)

另一种方法是使用org-agenda-skip-entry。我跳过已安排的任务或截止日期或时间戳以及包含单词/标签“desparche”的任务。

("X" "Not scheduled"
     ( (todo "TODO"
             (
              (org-agenda-skip-function '(org-agenda-skip-entry-if 'scheduled 'deadline 'timestamp 'regexp "desparche"                                                               ))
              )
             )
       )
     )