mikaeljorhult / brackets-todo

Brackets/Edge Code extension that displays all TODO comments in current document or project.
144 stars 37 forks source link

show global todo list of entire project? #27

Closed FezVrasta closed 10 years ago

FezVrasta commented 10 years ago

I'm not sure if this feature is somewhere or not but I'd like to see the entire list of my TODO and NOTE somehow, to not have to check each file to find some TODO or NOTE.

mikaeljorhult commented 10 years ago

Yes, it's possible to show all todos in a project. I just now noticed that I haven't included this in the documentation so it's good that you asked.

If you add a file with the name of .todo in your project and add the following configuration you will be presented with a list of todos from all files and not just the current.

{
    "search": {
        "scope": "project"
    }
}
FezVrasta commented 10 years ago

Oh thanks! I've seen the feature in the screenshot but I was not able to find how to enable it and I felt so stupid :S Thanks again, great extension :)

mikaeljorhult commented 10 years ago

My fault for not including it in the documentation. I've updated it with the example I just gave you.

Thank you!