Skip to content

Instantly share code, notes, and snippets.

@virgilwashere
Last active December 26, 2018 02:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save virgilwashere/a5a4c3d5c5c0021973fb77317b946164 to your computer and use it in GitHub Desktop.
Save virgilwashere/a5a4c3d5c5c0021973fb77317b946164 to your computer and use it in GitHub Desktop.
# Todo Tree ## vscode extension * https://github.com/Gruntfuggly/todo-tree 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",
},
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment