mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 23:04:08 +10:00
Added vscode syntax highlighting under /tools
This commit is contained in:
25
tools/toylang.vscode-highlighting/package.json
Normal file
25
tools/toylang.vscode-highlighting/package.json
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"name": "toy-syntax-highlighting",
|
||||
"displayName": "Toy Syntax Highlighting",
|
||||
"description": "A toy programming language",
|
||||
"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"
|
||||
}]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user