@@ -33,19 +33,11 @@ OrgFile:reload() *OrgFile:reload*
33
33
OrgHeadline *OrgHeadline*
34
34
35
35
Fields: ~
36
- {title} (string) headline title without todo keyword, tags and priority. Ex. `* TODO I am a headline :SOMETAG:` returns `I am a headline`
37
- {line} (string) full headline line
38
- {tags} (string[]) List of own tags
39
- {deadline} (Date|nil)
40
- {scheduled} (Date|nil)
41
- {closed} (Date|nil)
42
- {dates} (Date[]) List of all dates that are not "plan" dates
43
- {position} (Range)
44
- {all_tags} (string[]) List of all tags (own + inherited)
45
- {file} (OrgFile)
46
- {parent} (OrgHeadline|nil)
47
- {priority} (string|nil)
48
- {headlines} (OrgHeadline[])
36
+ {title} (string) headline title without todo keyword, tags and priority. Ex. `* TODO I am a headline :SOMETAG:` returns `I am a headline`
37
+ {line} (string) full headline line
38
+ {level} (number) headline level (number of asterisks). Example: 1
39
+ {todo_value?} (string) todo keyword of the headline (Example: TODO, DONE)
40
+ {todo_type?} (string|)
49
41
50
42
51
43
OrgHeadline:reload() *OrgHeadline:reload*
@@ -120,32 +112,38 @@ OrgAgendaFilter *OrgAgendaFilter*
120
112
121
113
OrgAgendaOptions *OrgAgendaOptions*
122
114
115
+ Fields: ~
116
+ {filters?} (OrgAgendaFilter)
117
+ {from?} (string|Date)
118
+ {span?} (number| day | week| month | year)
119
+
123
120
124
121
OrgAgenda.agenda({options?}) *OrgAgenda.agenda*
125
- @field filters? OrgAgendaFilter
126
- @field from? string | Date
127
- @field span? number | 'day' | 'week' | 'month' | 'year'
128
122
129
123
Parameters: ~
130
124
{options?} (OrgAgendaOptions)
131
125
132
126
133
127
OrgAgendaTodosOptions *OrgAgendaTodosOptions*
134
128
129
+ Fields: ~
130
+ {filters?} (OrgAgendaFilter)
131
+
135
132
136
133
OrgAgenda.todos({options?}) *OrgAgenda.todos*
137
- @field filters? OrgAgendaFilter
138
134
139
135
Parameters: ~
140
136
{options?} (OrgAgendaTodosOptions)
141
137
142
138
143
139
OrgAgendaTagsOptions *OrgAgendaTagsOptions*
144
140
141
+ Fields: ~
142
+ {filters?} (OrgAgendaFilter)
143
+ {todo_only?} (boolean)
144
+
145
145
146
146
OrgAgenda.tags({options?}) *OrgAgenda.tags*
147
- @field filters? OrgAgendaFilter
148
- @field todo_only? boolean
149
147
150
148
Parameters: ~
151
149
{options?} (OrgAgendaTagsOptions)
0 commit comments