virgilwashere
12/26/2018 - 1:38 AM

Todo Tree - vscode extension

Todo Tree

vscode extension

Show TODO, FIXME, etc. comment tags in a tree view

"todo-tree.tags": [
  "TODO",
  "FIXME",
  "DONE",
  "INFO",
  "BUG",
  "REVIEW",
],
"todo-tree.defaultHighlight": {
    "icon": "octoface",
    "type": "text",
    "foreground": "green",
    "background": "white",
    "iconColour": "green"
},
"todo-tree.customHighlight": {
    "TODO": {
        "icon": "checklist",
        "type": "line",
        "iconColour": "magenta",
    },
    "DONE": {
        "icon": "verified",
        "iconColour": "green",
        "foreground": "green",
    },
    "INFO": {
        "icon": "info",
        "foreground": "cyan",
        "iconColour": "cyan",
    },
    "REVIEW": {
        "icon": "star",
        "foreground": "blue",
        "iconColour": "white",
    },
    "BUG": {
        "icon": "bug",
        "foreground": "red",
        "iconColour": "red",
    },
    "FIXME": {
        "icon": "flame",
        "foreground": "orange",
        "iconColour": "orange",
    },
},