mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 02:58:56 +01:00
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:
@@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user