【发布时间】:2014-02-22 19:44:51
【问题描述】:
我确实有 WAIT 任务,最重要的是有一个 Assignee 属性。例如:
** WAIT Receive performance report
:PROPERTIES:
:Assignee: john@doe.com
:END:
** WAIT Get bug #4 fixed
:PROPERTIES:
:Assignee: jane@doe.com
:END:
我想获得一个自定义议程视图,其中包含按受让人分组的所有 WAIT 任务,例如:
Assigned to john@doe.com:
WAIT Receive performance report
WAIT Get notes of status meeting
Assigned to jane@doe.com:
WAIT Get bug #4 fixed
WAIT Get back book about GTD methodology
Not assigned:
WAIT Discuss with Sandra when she comes back
编辑(2014-02-23 11:07):受让人名单未知,也不是静态的。因此,必须在生成组织议程视图时发现这些组。
这怎么可能?蒂亚!
【问题讨论】:
-
这里是文档中的一个示例,该示例返回特定属性抽屉的命中:
(org-tags-view nil "Assignee={.}")但是,排序和布局需要自定义解决方案。请参阅文档中的部分说明:If he would like to pull up all entries that have defined value for the BIB_TITLE property, he can simply use a single dot to match any character: BIB_TITLE={.} -
函数
org-tags-view(使用org-scan-tags)会考虑org-agenda-skip-function(如果已定义),因此您可以使用它来仅关注包含单词“WAIT”的条目。 -
另请参阅手册中有关
org-search-view的部分,其中指出:Mr. Gnu further finds that to treat 'dog' and 'fox' as boolean keywords that can be located anywhere in the entry, he needs to precede each term with a + . . . . : +fox +dog您的布尔关键字搜索可能是:+wait +assignee但是,排序和布局(根据上述问题的需要) ) 需要自定义解决方案。
标签: org-mode