Gruntfuggly / todo-tree

Use ripgrep to find TODO tags and display the results in a tree view
Other
1.43k stars 139 forks source link

Support for rust `todo!()` #731

Closed lylythechosenone closed 1 year ago

lylythechosenone commented 1 year ago

Rust has a macro, todo!("message") that panics with "Not yet implemented: message". It would be nice to have a list of these. It could work just like the TODO comments, but use that syntax instead.

Do note, todo!() macros can also exist with no message.

Gruntfuggly commented 1 year ago

Does it work if you add todo! as a tag (with the Todo Tree: Add Tag command) ?

lylythechosenone commented 1 year ago

Oh, surprisingly it does! Thanks!