A tool that finds comment tags in source code.
Do you like leaving todo comments in your code but want a way to easily find them? Use grep! But if you want different kinds of tags (optimize, fix, bug, etc...), want more information (when comments were last changed) or you are just lazy then todl can help.
You can install todl as a cli tool
cargo install todl
To search the current directory
todl
Example output (width is determined by your terminal)
Comment tags are labels at the start of comments to make it easier to find and convey meaning.
// TODO: Make this function do something
fn foo() -> u32 {
0
}
C style comments and rust todo!()
macros.
Supported tags include (case insensitive):
todo
bug
debug
fix
fixme
note
nb
undone
hack
bodge
kludge
xxx
optimize
optimizeme
optimise
optimiseme
safety
invariant
lint
ignored
There is support for custom tags but if you are using a language that is not currently supported raise an issue for it here issues.
- Currently only supports rust and c-like syntax
- Does not exclude strings
- The message extracted after the comment tag only includes the first line
Check out these tools that do similar things