oliverdavies.uk/source/_daily_emails/2025-05-07.md

1,021 B

title date permalink tags cta snippet
Plain text TODOs 2025-05-07 daily/2025/05/07/st
software-development
~ A while ago, I wrote how I use plain text files for my project to-do lists. Today, I found an example whilst looking at an open source project repository.

In January, I wrote about using plain text files for to-do lists instead of larger and more complex project management tools.

I found an example of this in the code repository for st, the simple terminal from suckless.org.

They have a TODO.html file which is a plain text list of todo tasks.

There are a lot of examples on GitHub, too.

Something I like in st's file is this command:

grep -nE 'XXX|TODO' st.c

This finds TODO comments in the st.c file so those can be included.