mt40 / vscode-todo-parser

TodoParser extension for vscode. Parse TODOs in your project.
http://kantlove.github.io/vscode-todo-parser
MIT License
54 stars 13 forks source link

Integration with Problems Panel (Resolves #53) #65

Closed peacegiverman closed 7 years ago

peacegiverman commented 7 years ago

I implemented support for rendering TODO comments in the Problems panel instead of the Output panel.

Displaying tasks in the problem panel is optional and happens only if the (new) showInProblems setting is set to true.

Furthermore, I expanded the markers setting, so that it now accepts a list of strings or tuples. Tuples are pairs of marker string and priority level. Priority level is used to display the appropriate icon (warning, error, info) in the Problems panel. Accepted values are:

I've also added schema definitions for these two settings (showInProblems and markers), so that VS Code can validate the user's settings.

Please let me know if you have any questions or comments.

mt40 commented 7 years ago

looks great, thanks a lot pal 👍