Skip to content

Commit

Permalink
Marketplace manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
Armitxes committed Jan 27, 2016
1 parent 2ab7109 commit 6216994
Showing 1 changed file with 31 additions and 18 deletions.
49 changes: 31 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "SQF Language",
"description": "Full SQF Language support for VS Code.",
"icon": "img/logo.svg",
"version": "0.3.4",
"version": "0.4.6",
"publisher": "Armitxes",
"galleryBanner": {
"color": "#6600CC",
Expand All @@ -19,31 +19,44 @@
"type": "git",
"url": "https://github.com/Armitxes/VSCode_SQF.git"
},
"categories": ["Languages","Snippets"],
"categories": ["Languages","Snippets","Themes"],
"engines": {
"vscode": "0.10.x"
},
"contributes": {
"languages": [{
"id": "sqf",
"aliases": ["SQF", "sqf","Status Quo Function"],
"extensions": [".sqf",".sqm"]
}],
"grammars": [{
"language": "sqf",
"scopeName":"source.sqf",
"path":"./syntaxes/sqf.json"
}],
"snippets": [{
"language": "sqf",
"path": "./snippets/sqf.json"
}],
"contributes": {
"languages": [
{
"id": "sqf",
"aliases": [
"SQF",
"sqf",
"Status Quo Function"
],
"extensions": [
".sqf",
".sqm"
]
}
],
"grammars": [
{
"language": "sqf",
"scopeName": "source.sqf",
"path": "./syntaxes/sqf.json"
}
],
"snippets": [
{
"language": "sqf",
"path": "./snippets/sqf.json"
}
],
"themes": [
{
"label": "[SQF] Dark Theme",
"uiTheme": "vs-dark",
"path": "./themes/sqf.tmTheme"
}
]
}
}
}

0 comments on commit 6216994

Please sign in to comment.