lumoe / obsidian-rollover-daily-todos

An obsidian plugin that rolls over todo items from the previous daily note
MIT License
247 stars 60 forks source link

Rollover ALL to-do statuses EXCEPT Completed ("[x]")? #127

Open vogelap opened 7 months ago

vogelap commented 7 months ago

I am using Obsidian to manage my daily to-do items, and enjoy the “Rollover Daily Todos” plugin which rolls yesterday’s to-do items to today’s daily note.

I recently installed the Things theme (2.1.19) which enabled the “[/]” Task Status for ‘In Progress’ items (among other useful task statuses).

Is it possible for the Rollover Daily Todos plugin to roll over ALL to-do items from yesterday to today’s daily note that are NOT in a status of complete ("[x]"). Is there a way to do that? I could envision a regex that excluded only "[x]" but included all other bracketed items (like “[/]”) to be rolled over from day to day. But I lack the skills to implement that…

beryllium commented 7 months ago

I've been hoping for similar functionality. I think the regex syntax would be to replace the space in between the square brackets with [^xX\]] (a character set that should mean: "neither lower nor upper X, nor closing square bracket")

beryllium commented 7 months ago

Actually, looks like this has already been worked on & may be coming in a future release: https://github.com/lumoe/obsidian-rollover-daily-todos/pull/76