summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-10-03Added index of line to raw output.HEADmasterRobby Zambito
This is useful for feeding the output of raw back into todo.
2021-10-03Added support for stdin for todo addRobby Zambito
This accepts one line as one task. Also added some comments.
2021-10-03Sort indices after parsing them.Robby Zambito
When we use the indices we assume they are sorted. This makes sure they are sorted, rather than assuming the user entered them in order.
2021-10-03Completed major functionality from inspiration program.Robby Zambito
All the major features from the original Rust program should now work. Created a "process_todo_file" function which minimizes code repetition by iterating over the TODO file in a flexible way. It accepts functions as parameters to achieve the needed flexibility.
2021-09-29No need to search for newlineRobby Zambito
We know it will always be the last character in line, and we know the length of line from the return value.
2021-09-29Added simple README.Robby Zambito
2021-09-29Initial commitRobby Zambito
Have add, list, done, rm, and help working. Still need to do sort and raw.