Hacker News new | ask | show | jobs
by piaste 3323 days ago
Heh. Visual Studio actually does keep track of all the TODOs in all the files in your project. It's the Task List window (View -> Other Windows -> Task List, or ctrl-alt-K).
1 comments

Does it track FIXMEs?
By default it looks for the tokens: HACK, TODO, UNDONE, and NOTE.

However, you can add your own tokens and assign different priorities to them.

https://docs.microsoft.com/en-us/visualstudio/ide/using-the-...

Very nice, it now almost resembles the functionality of "grep -rn FIXME ." in the shell and ":grep -r FIXME ." in vim.