34 lines
945 B
JSON
34 lines
945 B
JSON
{
|
|
"name": "qamp",
|
|
"displayName": "Q& Language Support by Qrakhen",
|
|
"repository": "https://git.qrakhen.net/qrakhen/qamp-vscode.git",
|
|
"publisher": "qrakhen",
|
|
"version": "0.0.1",
|
|
"engines": {
|
|
"vscode": "^1.0.0"
|
|
},
|
|
"categories": [
|
|
"Programming Languages"
|
|
],
|
|
"contributes": {
|
|
"contributes": {
|
|
"snippets": [{
|
|
"language": "qamp",
|
|
"path": "./snippets/qamp.code-snippets"
|
|
}]
|
|
},
|
|
"languages": [{
|
|
"id": "qamp",
|
|
"aliases": ["Q&", "qamp"],
|
|
"icon": { "dark": "cogwheel", "light": "cogwheel" },
|
|
"extensions": [ ".qp", ".sq", ".qamp" ],
|
|
"configuration": "./language-configuration.json"
|
|
}],
|
|
"grammars": [{
|
|
"language": "qamp",
|
|
"scopeName": "source.qamp",
|
|
"path": "./syntaxes/qamp.tmLanguage.json"
|
|
}]
|
|
}
|
|
}
|