thesamim / TickTickSync

GNU General Public License v3.0
145 stars 9 forks source link

Is it possible to support synchronizing tasks to daily diaries? #152

Open mumudm opened 3 months ago

mumudm commented 3 months ago

The number of tasks in each list is increasing, which is difficult to manage. Is it possible to set the tasks added from TickTick to be added to the diary?

thesamim commented 3 months ago

@mumudm , Do you mean synchronize ALL Tasks to a single file? or do you mean sync tasks to a daily note?

In either case, that would require a major re-architecting of the sync logic....

Maybe give some examples of what you want to accomplish and I can see if there's a work around....

bailboy101 commented 3 months ago

I was able to achieve this to my daily notes using dataview queries.

TASK
FROM "Tasks"
WHERE due = date("2024-07-15")

You can replace due date with a templater argument if you use your date as your file name. My daily notes are YYYY-DD-MM so my templater argument is WHERE due = date("<% tp.file.title %>")