Skip to content

Instantly share code, notes, and snippets.

@imgul
Last active April 19, 2023 06:44
Show Gist options
  • Save imgul/1c99e9a78c0f6aa549d7df4f0c74ff55 to your computer and use it in GitHub Desktop.
Save imgul/1c99e9a78c0f6aa549d7df4f0c74ff55 to your computer and use it in GitHub Desktop.
Extension by: Wayou Liu
// to do higlight
"todohighlight.isEnable": true,
"todohighlight.isCaseSensitive": false,
"todohighlight.include": [
"**/*.php"
],
"todohighlight.exclude": [
"**/node_modules/**",
"**/bower_components/**",
"**/dist/**",
"**/build/**",
"**/.vscode/**",
"**/.github/**",
"**/_output/**",
"**/*.min.*",
"**/*.map",
"**/.next/**",
"**/.git/**",
"**/.svn/**",
"**/.hg/**",
"**/CVS/**",
"**/vendor/**",
"**/coverage/**",
"**/test/**",
"**/tests/**",
"**/assets/**",
"**/asset/**",
"**/public/**",
"**/static/**",
"**/images/**",
"**/img/**",
"**/icons/**",
"**/css/**",
"**/js/**",
"**/scss/**",
"**/sass/**",
"**/system/**",
"**/cache/**"
],
"todohighlight.maxFilesForSearch": 5120,
"todohighlight.toggleURI": false,
"todohighlight.keywords": [
{
"text": "TODO:",
"color": "rgba(0, 0, 0, 1)",
"backgroundColor": "rgba(255, 235, 59, 1)",
"overviewRulerColor": "rgba(255, 0, 0, 0.5)"
},
{
"text": "FIXME:",
"color": "rgba(255, 255, 255, 1)",
"backgroundColor": "rgba(255, 0, 0, 1)",
"overviewRulerColor": "rgba(255, 0, 0, 0.5)"
},
{
"text": "NOTE:",
"color": "rgba(255, 255, 255, 1)",
"backgroundColor": "rgba(0, 191, 255, 1)",
"overviewRulerColor": "rgba(255, 0, 0, 0.5)"
},
{
"text": "HACK:",
"color": "rgba(0, 0, 0, 1)",
"backgroundColor": "rgba(0, 255, 0, 1)",
"overviewRulerColor": "rgba(255, 0, 0, 0.5)"
},
{
"text": "REVIEW:",
"color": "rgba(0, 0, 0, 1)",
"backgroundColor": "rgba(135, 206, 235, 1)",
"overviewRulerColor": "rgba(255, 0, 0, 0.5)"
},
{
"text": "CHANGED:",
"color": "rgba(255, 255, 255, 1)",
"backgroundColor": "rgba(255, 165, 0, 1)",
"overviewRulerColor": "rgba(255, 0, 0, 0.5)"
},
{
"text": "XXX:",
"color": "rgba(255, 255, 255, 1)",
"backgroundColor": "rgba(255, 0, 255, 1)",
"overviewRulerColor": "rgba(255, 0, 0, 0.5)"
},
{
"text": "IDEA:",
"color": "rgba(255, 255, 255, 1)",
"backgroundColor": "rgba(218, 112, 214, 1)",
"overviewRulerColor": "rgba(255, 0, 0, 0.5)"
},
{
"text": "INFO:",
"color": "rgba(255, 255, 255, 1)",
"backgroundColor": "rgba(70, 130, 180, 1)",
"overviewRulerColor": "rgba(255, 0, 0, 0.5)"
},
{
"text": "TEST:",
"color": "rgba(255, 255, 255, 1)",
"backgroundColor": "rgba(60, 179, 113, 1)",
"overviewRulerColor": "rgba(255, 0, 0, 0.5)"
},
{
"text": "BUG:",
"color": "rgba(255, 255, 255, 1)",
"backgroundColor": "rgba(255, 99, 71, 1)",
"overviewRulerColor": "rgba(255, 0, 0, 0.5)"
},
{
"text": "IMPORTANT:",
"color": "rgba(255, 255, 255, 1)",
"backgroundColor": "rgba(255, 0, 255, 1)",
"overviewRulerColor": "rgba(255, 0, 0, 0.5)"
},
{
"text": "OPTIMIZE:",
"color": "rgba(0, 0, 0, 1)",
"backgroundColor": "rgba(255, 215, 0, 1)",
"overviewRulerColor": "rgba(255, 0, 0, 0.5)"
},
{
"text": "WARNING:",
"color": "rgba(255, 255, 255, 1)",
"backgroundColor": "rgba(255, 140, 0, 1)",
"overviewRulerColor": "rgba(255, 0, 0, 0.5)"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment