Skip to content

Instantly share code, notes, and snippets.

@danpoynor
Created December 17, 2021 17:45
Show Gist options
  • Save danpoynor/03b2f2e2c06d73fe558e15b79700398f to your computer and use it in GitHub Desktop.
Save danpoynor/03b2f2e2c06d73fe558e15b79700398f to your computer and use it in GitHub Desktop.
VS Code Todo Tree code tag color settings
"todo-tree.regex.regex" : "(\/\/|#|<!--|;|\/\\*|^|^\\s*(-|\\d+.))\\s*($TAGS)",
"todo-tree.highlights.useColourScheme" : true,
"todo-tree.regex.enableMultiLine" : true,
"todo-tree.general.tags" : [
"BUG",
"!!!",
"HACK",
"FIXME",
"XXX",
"RFE",
"NYI",
"REFACTOR",
"TODO",
"YAGNI",
"IDEA",
"NOTE",
"REF",
"console.log",
"[ ]",
"[x]"
],
"todo-tree.highlights.foregroundColourScheme" : [
"white",
"white",
"black",
"black",
"black",
"black",
"black",
"black",
"black",
"black",
"black",
"black",
"black",
"white",
"black",
"lightgreen"
],
"todo-tree.highlights.backgroundColourScheme" : [
"red",
"red",
"orange",
"orange",
"orange",
"orange",
"orange",
"orange",
"yellow",
"yellow",
"LightSkyBlue",
"#eeff00",
"DeepSkyBlue",
"red",
"lightgreen",
"green"
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment