todo icon indicating copy to clipboard operation
todo copied to clipboard

Simple todo cli program written in rust

Results 19 todo issues
Sort by recently updated
recently updated
newest added

A cool addition would be the possiblity to add a description to a task, to further specify the todo goal.

I think it would be cool if, when launching the Todo command, it would look for a todo list inside the current folder, without the hustle of having to specify...

Allow a method for organizing todos via f.x. boards similar to [Taskbook](https://github.com/klaussinani/taskbook#configuration). This would use `@labels` to create so called boards which can then be queried with `todo list @boardname`...

It would be nice if `todo` can take tasks from stdin. **Usage** Add tasks `echo banana orange | todo add` or `cat my_issues.txt | todo add` Mark done tasks start...

User can opt into saving their todo in the form of markdown. **Currently** `todo` saves todos in a TODO file. **Request** Save todo in an opt in markdown file. Eg....

Linked issue: https://github.com/sioodmy/todo/issues/21

Add an option for defining a different storage location than `~/.todo` to declutter the home directory. However, https://github.com/sioodmy/todo/issues/20 may supersede this proposal.

Sorry, the old pull request got closed, because i've idiotically deleted my old fork

At line 56 in [fn new] lib.rs, variable contents, whose type is a String, call to_string on itself. Why to_string is needed here. (I remove it, the code still work...