Skip to content

Instantly share code, notes, and snippets.

@andrejsharapov
Last active April 22, 2024 13:28
Show Gist options
  • Save andrejsharapov/cf1b306b59cef9a3c25d5f1265d5de9c to your computer and use it in GitHub Desktop.
Save andrejsharapov/cf1b306b59cef9a3c25d5f1265d5de9c to your computer and use it in GitHub Desktop.
vscode comment anchors taglist
// alphabet order
"commentAnchors.tags.anchors": {
// ANCHOR
"ANCHOR": {
"highlightColor": "#E4D832",
"iconColor": "#E4D832",
"scope": "file",
"styleComment": true
},
// NOTE
"NOTE": {
"highlightColor": "#38D3EB",
"iconColor": "#38D3EB",
"scope": "workspace"
},
// TODO
"TODO": {
"highlightColor": "#00F51D",
"iconColor": "#00F51D",
"scope": "workspace",
"styleComment": true
},
// REVIEW
"REVIEW": {
"highlightColor": "#F55E00",
"iconColor": "#F55E00",
"scope": "workspace",
"styleComment": true
},
// TEST
"TEST": {
"highlightColor": "#FFB300",
"iconColor": "#FFB300",
"scope": "workspace",
"styleComment": true
},
// FIXME
"FIXME": {
"highlightColor": "#E60000",
"iconColor": "#E60000",
"scope": "workspace",
"styleComment": true
},
// SECTION
"SECTION": {
"behavior": "region",
"highlightColor": "#0097F5",
"iconColor": "#0097F5",
"scope": "workspace"
},
// COMPONENT
"COMPONENT": {
"behavior": "region",
"highlightColor": "#2ECCB7",
"iconColor": "#2ECCB7",
"scope": "workspace"
},
// LINK
"LINK": {
"behavior": "link",
"highlightColor": "#2ECC71",
"iconColor": "#2ECC71",
"scope": "workspace"
},
// DEV
"DEV": {
"behavior": "region",
"highlightColor": "#BA68C8",
"iconColor": "#BA68C8",
"scope": "file",
"styleComment": true
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment