2015-11-13 21:39:38 +08:00
|
|
|
{
|
|
|
|
"name": "cpp",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"publisher": "vscode",
|
|
|
|
"engines": { "vscode": "*" },
|
|
|
|
"contributes": {
|
|
|
|
"languages": [{
|
|
|
|
"id": "c",
|
2015-12-21 20:42:28 +08:00
|
|
|
"extensions": [ ".c"],
|
2015-11-13 21:39:38 +08:00
|
|
|
"aliases": [ "C", "c" ],
|
|
|
|
"configuration": "./cpp.configuration.json"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "cpp",
|
2016-01-29 03:19:41 +08:00
|
|
|
"extensions": [ ".cpp", ".cc", ".cxx", ".hpp", ".hh", ".hxx", ".h", ".mm", ".ino" ],
|
2015-11-13 21:39:38 +08:00
|
|
|
"aliases": [ "C++", "Cpp", "cpp"],
|
|
|
|
"configuration": "./cpp.configuration.json"
|
|
|
|
}],
|
|
|
|
"grammars": [{
|
|
|
|
"language": "c",
|
|
|
|
"scopeName": "source.c",
|
2016-04-12 17:32:01 +08:00
|
|
|
"path": "./syntaxes/c.json"
|
2015-11-13 21:39:38 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"language": "cpp",
|
2016-04-12 17:32:01 +08:00
|
|
|
"scopeName": "source.cpp",
|
|
|
|
"path": "./syntaxes/c++.json"
|
2016-03-31 23:40:26 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"scopeName": "source.c.platform",
|
|
|
|
"path": "./syntaxes/Platform.tmLanguage"
|
2015-11-13 21:39:38 +08:00
|
|
|
}]
|
|
|
|
}
|
|
|
|
}
|