mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-06 17:09:06 +01:00
29 lines
792 B
JSON
29 lines
792 B
JSON
{
|
|
"name": "chip32-syntax",
|
|
"displayName": "Chip32 Syntax Highlighting",
|
|
"description": "Syntax highlighting for Chip32 assembly language",
|
|
"version": "0.0.1",
|
|
"publisher": "Anthony Rabine",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/arabine/open-story-teller"},
|
|
"engines": {
|
|
"vscode": "^1.0.0"
|
|
},
|
|
"categories": [
|
|
"Programming Languages"
|
|
],
|
|
"contributes": {
|
|
"languages": [{
|
|
"id": "chip32",
|
|
"extensions": [".chip32"],
|
|
"aliases": ["Chip32", "chip32"]
|
|
}],
|
|
"grammars": [{
|
|
"language": "chip32",
|
|
"scopeName": "source.assembly",
|
|
"path": "./syntaxes/chip32.tmLanguage.json"
|
|
}]
|
|
}
|
|
} |