Categories #855
Replies: 2 comments 12 replies
-
Yes, you can filter by categories in all available views like this. You can either use org_agenda_custom_commands = {
m = {
description= 'My agenda',
types = {
{
type = 'agenda',
org_agenda_category_filter_preset = 'mycategory'
},
{
type = 'tags',
org_agenda_category_filter_preset = 'mycategory'
},
{
type = 'tags_todo',
-- alternative way to match category, only available in tags and tags_todo types
match = 'CATEGORY="mycategory"'
},
}
}
} |
Beta Was this translation helpful? Give feedback.
-
Piggybacking on this, since I'm also struggling to understand how to leverage categories. If a headline has for example the following property set:
how can I match or filter it? @kristijanhusak I can't reproduce the matching/filtering behaviour with the custom command you mentioned above. |
Beta Was this translation helpful? Give feedback.
-
First off, the new agenda custom commands are great. I'm wondering if we can configure the categories in the agenda view by designating a #+CATEGORY property, per this part of the orgmode spec?
Beta Was this translation helpful? Give feedback.
All reactions