You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/changelog.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
14
15
15
### ✨ Features
16
16
17
+
- You can now sort tasks alphabetically by name using `alphabetical` or `alphabeticalDescending` in the sorting field
17
18
- You can now provide 'time' to the show field on a query. This will only render the time of the task (unless the end of the task is on a different day than the start).
Copy file name to clipboardExpand all lines: docs/docs/query-blocks.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,8 @@ autorefresh: 120
61
61
62
62
The `sorting` property allows you to specify the ordering for how your tasks are rendered. This is specified as a list, where we sort in the order of the properties in the list. The possible values are:
63
63
64
+
-`alphabetical` or `alphabeticalAscending`: sorts tasks alphabetically by name (A→Z, case-insensitive)
65
+
-`alphabeticalDescending`: sorts tasks alphabetically by name (Z→A, case-insensitive)
64
66
-`date` or `dateAscending`: sorts tasks in ascending order based on due date
65
67
-`dateDescending`: sorts tasks in descending order based on due date
66
68
-`priority` or `priorityAscending`: sorting tasks in ascending order based on priority
@@ -82,6 +84,17 @@ sorting:
82
84
```
83
85
````
84
86
87
+
You can also sort tasks alphabetically:
88
+
89
+
````
90
+
```todoist
91
+
filter: "#work"
92
+
sorting:
93
+
- priority
94
+
- alphabetical
95
+
```
96
+
````
97
+
85
98
### `groupBy`
86
99
87
100
The `groupBy` property controls how tasks are grouped when they are rendered. If omitted, there will be no grouping. The possible values are:
0 commit comments