orderly/.vscode/settings.json

29 lines
759 B
JSON
Raw Normal View History

2020-03-31 15:52:46 +00:00
{
2020-03-31 16:22:51 +00:00
"C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools",
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "googletest.failed",
"settings": {
"foreground": "#f00"
}
},
{
"scope": "googletest.passed",
"settings": {
"foreground": "#0f0"
}
},
{
"scope": "googletest.run",
"settings": {
"foreground": "#0f0"
}
}
]
},
"gtest-adapter.debugConfig": [
"(gdb) gtest bug"
],
"gtest-adapter.supportLocation": true
2020-03-31 15:52:46 +00:00
}