A simple todo editor written in C++
A simple todo editor that can view todos in a file and check/uncheck them.
$ make
$ ./bin/app FILENAME
See ./bin/app -h
for help.
A simple todo example:
[X] Buy apples
[ ] Buy oranges
A dash in front of the todo is acceptable:
- [X] Buy apples
- [ ] Buy oranges
The checked character is case-insensitive (both x
and X
are valid).
If the box isnt checked, the character can either be a space (
) or a dot (.
)
[x] Buy apples
[.] Buy oranges
All lines in a file that are not todos are ignored and their parsing error is logged into
stderr
If you find any bugs, please create an issue and report them.
Run make all
to see all the make rules.