mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-16 07:14:07 +10:00
27 lines
616 B
JSON
27 lines
616 B
JSON
{
|
|
"name": "toy-syntax-highlighting",
|
|
"displayName": "Toy Syntax Highlighting",
|
|
"description": "Syntax highligher for a toy programming language",
|
|
"author": "Kayne Ruse",
|
|
"version": "0.0.1",
|
|
"engines": {
|
|
"vscode": "^1.73.0"
|
|
},
|
|
"categories": [
|
|
"Programming Languages"
|
|
],
|
|
"contributes": {
|
|
"languages": [{
|
|
"id": "toy",
|
|
"aliases": ["Toy", "toy"],
|
|
"extensions": [".toy"],
|
|
"configuration": "./language-configuration.json"
|
|
}],
|
|
"grammars": [{
|
|
"language": "toy",
|
|
"scopeName": "source.toy",
|
|
"path": "./syntaxes/toy.tmLanguage.json"
|
|
}]
|
|
}
|
|
}
|