Sw9tch Objective-C to Use the Atom Objective C Language

Switching to use the atom objective-c fork of the textmate grammar. The atom version seems to be more maitained
This commit is contained in:
Matt Bierner
2017-02-28 21:03:31 -08:00
parent a801f731ee
commit f16135b7b5
7 changed files with 1405 additions and 1591 deletions

View File

@@ -2,18 +2,46 @@
"name": "objective-c",
"version": "0.1.0",
"publisher": "vscode",
"engines": { "vscode": "*" },
"engines": {
"vscode": "*"
},
"scripts": {
"update-grammar": "node ../../build/npm/update-grammar.js atom/language-objective-c grammars/objective-c.cson ./syntaxes/objective-c.tmLanguage.json && node ../../build/npm/update-grammar.js atom/language-objective-c grammars/objective-c++.cson ./syntaxes/objective-c++.tmLanguage.json"
},
"contributes": {
"languages": [{
"id": "objective-c",
"extensions": [ ".m" ],
"aliases": [ "Objective-C"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "objective-c",
"scopeName": "source.objc",
"path": "./syntaxes/Objective-C.tmLanguage"
}]
"languages": [
{
"id": "objective-c",
"extensions": [
".m"
],
"aliases": [
"Objective-C"
],
"configuration": "./language-configuration.json"
},
{
"id": "objective-c++",
"extensions": [
".mm"
],
"aliases": [
"Objective-C++"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "objective-c",
"scopeName": "source.objc",
"path": "./syntaxes/objective-c.tmLanguage.json"
},
{
"language": "objective-c++",
"scopeName": "source.objcpp",
"path": "./syntaxes/objective-c++.tmLanguage.json"
}
]
}
}