Last active
May 20, 2019 12:49
-
-
Save edujr1/54bbb5a4ae51a2b14c51a4fb2eb9b477 to your computer and use it in GitHub Desktop.
Novos campos de anotação para o plugin TODO Highlights VS Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"todohighlight.keywords": [ | |
{ | |
"text": "TODO:", | |
"color": "BLACK", | |
}, | |
{ | |
"text": "FIXME:", | |
"color": "BLACK", | |
}, | |
{ | |
"text": "NOTE:", | |
"color": "BLACK", | |
"backgroundColor": "WHITE", | |
}, | |
{ | |
"text": "OPTIMIZE:", | |
"color": "white", | |
"backgroundColor": "DARKBLUE", | |
}, | |
{ | |
"text": "DEBUG:", | |
"color": "white", | |
"backgroundColor": "RED", | |
} | |
], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment