Skip to content

Commit 064f4fa

Browse files
committed
Add highlight for INFO: #2
Using white instead, to be less "distracting".
1 parent dbe571d commit 064f4fa

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ npm run package
1515
## Install
1616

1717
```sh
18-
code --install-extension hltodos-0.0.5.vsix
18+
code --install-extension hltodos-0.0.6.vsix
1919
```
2020

2121
## Credits

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"todos",
1111
"warnings"
1212
],
13-
"version": "0.0.5",
13+
"version": "0.0.6",
1414
"repository": {
1515
"type": "git",
1616
"url": "https://github.com/srbdev/hltodos.git"

src/extension.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ export function activate(context: vscode.ExtensionContext) {
2626
pattern: 'NOTE:',
2727
type: new vscode.ThemeColor('terminal.ansiGreen')
2828
},
29+
info: {
30+
pattern: 'INFO:',
31+
type: new vscode.ThemeColor('terminal.ansiWhite')
32+
},
2933
perf: {
3034
pattern: 'PERF:',
3135
type: new vscode.ThemeColor('terminal.ansiMagenta')

0 commit comments

Comments
 (0)