vscode-todo-parser icon indicating copy to clipboard operation
vscode-todo-parser copied to clipboard

showInProblems doesn't work

Open borekb opened this issue 7 years ago • 2 comments

VSCode version: 1.29.1 TODO Parser version: 1.9.1

TODOs aren't shown in the Problems view in my case:

screenshot 2018-11-25 at 10 44 51

I've tried reloading workspace for a couple of times.

borekb avatar Nov 25 '18 09:11 borekb

Define the priority level of each marker in the settings.json file appears to fix this.

    "TodoParser": {
        "showInProblems": true,
        "markers": [["TODO", "Information"], ["FIXME", "Warning"]]
      }

MegaApplePi avatar Nov 16 '19 01:11 MegaApplePi

This still doesn't work. This is my config file:

    "TodoParser": {
        "showInProblems": true,
        "autoDefaultMarkers": true,
        "markers": [["TODO", "Information"], ["FIXME", "Warning"]]
    }

straxhaber avatar Mar 15 '23 16:03 straxhaber