123456789101112131415161718192021222324 |
- {
- "editor.tokenColorCustomizations": {
- "textMateRules": [
- {
- "scope": "googletest.failed",
- "settings": {
- "foreground": "#f00"
- }
- },
- {
- "scope": "googletest.passed",
- "settings": {
- "foreground": "#0f0"
- }
- },
- {
- "scope": "googletest.run",
- "settings": {
- "foreground": "#0f0"
- }
- }
- ]
- }
- }
|