* Get tasks by priority from the filter index.
(priority: string)
| 781 | * Get tasks by priority from the filter index. |
| 782 | */ |
| 783 | getTaskPathsByPriority(priority: string): string[] { |
| 784 | const expectedPriority = |
| 785 | normalizePriorityConfigValue(priority, this.settings.customPriorities) ?? priority; |
| 786 | this.ensureFilterIndexes(); |
| 787 | return Array.from(this.priorityIndex.get(expectedPriority) ?? []); |
| 788 | } |
| 789 | |
| 790 | /** |
| 791 | * Get overdue task paths from the due-date index. |
no test coverage detected