mirror of
https://github.com/coder/code-server.git
synced 2026-05-07 21:07:26 +02:00
Squashed 'lib/vscode/' content from commit e5a624b788
git-subtree-dir: lib/vscode git-subtree-split: e5a624b788d92b8d34d1392e4c4d9789406efe8f
This commit is contained in:
50
extensions/objective-c/package.json
Normal file
50
extensions/objective-c/package.json
Normal file
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"name": "objective-c",
|
||||
"displayName": "%displayName%",
|
||||
"description": "%description%",
|
||||
"version": "1.0.0",
|
||||
"publisher": "vscode",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"vscode": "*"
|
||||
},
|
||||
"scripts": {
|
||||
"update-grammar": "node ./build/update-grammars.js"
|
||||
},
|
||||
"contributes": {
|
||||
"languages": [
|
||||
{
|
||||
"id": "objective-c",
|
||||
"extensions": [
|
||||
".m"
|
||||
],
|
||||
"aliases": [
|
||||
"Objective-C"
|
||||
],
|
||||
"configuration": "./language-configuration.json"
|
||||
},
|
||||
{
|
||||
"id": "objective-cpp",
|
||||
"extensions": [
|
||||
".mm"
|
||||
],
|
||||
"aliases": [
|
||||
"Objective-C++"
|
||||
],
|
||||
"configuration": "./language-configuration.json"
|
||||
}
|
||||
],
|
||||
"grammars": [
|
||||
{
|
||||
"language": "objective-c",
|
||||
"scopeName": "source.objc",
|
||||
"path": "./syntaxes/objective-c.tmLanguage.json"
|
||||
},
|
||||
{
|
||||
"language": "objective-cpp",
|
||||
"scopeName": "source.objcpp",
|
||||
"path": "./syntaxes/objective-c++.tmLanguage.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user