From e5836d20843a0c8047e82839189a3ea8bcf72c2c Mon Sep 17 00:00:00 2001 From: Tim Skov Jacobsen Date: Thu, 28 May 2020 16:18:12 +0200 Subject: [PATCH] Fix #174 + a typo --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 156678d..c4398e0 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,7 @@ an example of customizing configuration: "text": "HACK:", "color": "#000", "isWholeLine": false, + "backgroundColor": "rbga(0,0,0,0)", // set rgba's 4th parameter to 0 to disable background color }, { "text": "TODO:", @@ -68,7 +69,7 @@ an example of customizing configuration: "border": "1px solid red", "borderRadius": "2px", //NOTE: using borderRadius along with `border` or you will see nothing change "backgroundColor": "rgba(0,0,0,.2)", - //other styling properties goes here ... + //other styling properties go here ... } ], "todohighlight.keywordsPattern": "TODO:|FIXME:|\\(([^)]+)\\)", //highlight `TODO:`,`FIXME:` or content between parentheses @@ -80,7 +81,7 @@ an example of customizing configuration: "border": "1px solid #eee", "borderRadius": "2px", "isWholeLine": true, - //other styling properties goes here ... + //other styling properties go here ... }, "todohighlight.include": [ "**/*.js",