Todo_r is a simple rust command line utility that keeps track of your todo items in code. It is pronounced "todoer" like someone that does todos.
Find all your TODO notes with one command!
A lot is adapted from leasot but runs much faster.
The latest release can be downloaded from the releases page.
If you use macOS Homebrew or Linuxbrew you can currently install the latest version using
$ brew tap lavifb/todo_r https://github.com/lavifb/todo_r.git
$ brew install todor
- Reads TODO comments that are on their own line.
// TODO: do this
/* TODO: do that */
Note: comments that are not on their own line are not supported.
- User references are tracked and can be found using
--user
flag.
// TODO(user1): item
// TODO: tagging @user2 and @user3
// TODO(user1): @user3 both are also found!