Skip to content

Instantly share code, notes, and snippets.

@OleksandrKucherenko
Created April 18, 2024 09:47
Show Gist options
  • Save OleksandrKucherenko/d180336f85d4416c58cb669ccea366aa to your computer and use it in GitHub Desktop.
Save OleksandrKucherenko/d180336f85d4416c58cb669ccea366aa to your computer and use it in GitHub Desktop.
VsCode ToDo Tree Configuration for Unit Tests highlighting
{
// ... trimmed ...
"todo-tree.general.tags": [
"BUG",
"HACK",
"FIXME",
"TODO",
"XXX",
"[ ]",
"[x]",
"NOTE",
"GIVEN",
"WHEN",
"THEN",
"AND"
],
"todo-tree.highlights.customHighlight": {
// ... trimmed ...
"GIVEN": {
"type": "text-and-comment",
"icon": "fold-down",
"gutterIcon": true,
"hideFromActivityBar": true,
"hideFromStatusBar": true,
"fontStyle": "italic",
"rulerLane": "full"
},
"AND": {
"type": "text-and-comment",
"gutterIcon": true,
"background": "#969696",
"foreground": "#2c2c2c",
"fontStyle": "italic",
"rulerLane": "none",
"iconColour": "green",
"icon": "grabber"
},
"WHEN": {
"type": "text-and-comment",
"gutterIcon": true,
"fontStyle": "italic",
"icon": "grabber",
"rulerLane": "none"
},
"THEN": {
"type": "text-and-comment",
"gutterIcon": true,
"fontStyle": "italic",
"rulerLane": "none",
"icon": "fold-up"
}
}
// ... trimmed ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment