我没有找到任何简单的方法来按标签对议程视图中的待办事项列表进行排序。
我的愿望是根据标签一起显示所有待办事项(一起打电话,一起邮寄,......)。
我怎样才能做到这一点?
答案 0 :(得分:3)
查看变量org-agenda-sorting-strategy
的帮助,并阅读Org Mode Manual,尤其是sorting agenda views上的部分。
org-agenda-sorting-strategy
有tag-up
和tag-down
个排序键。
答案 1 :(得分:0)
另一种可能性,可能不太合适,是定义“多块”视图,例如:
;; priority levels
(add-to-list 'org-agenda-custom-commands
'("p" . "Priorities...") t)
(add-to-list 'org-agenda-custom-commands
'("pa" "Actions Grouped by Priority"
(;; important things to do
(tags-todo "+PRIORITY={A}")
;; medium important things to do
(tags-todo "+PRIORITY={B}")
;; other things to do
(tags-todo "+PRIORITY={C}"))) t)
此示例使用优先级Cookie,但同样适用于按标记分组。