meta: add vscode language support extension
This commit is contained in:
50
ivy.vscode/package.json
Normal file
50
ivy.vscode/package.json
Normal file
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"name": "ivy-lang",
|
||||
"displayName": "Ivy Language",
|
||||
"description": "Ivy Language Support",
|
||||
"version": "0.0.1",
|
||||
"engines": {
|
||||
"vscode": "^1.95.0"
|
||||
},
|
||||
"categories": [
|
||||
"Programming Languages"
|
||||
],
|
||||
"contributes": {
|
||||
"languages": [
|
||||
{
|
||||
"id": "ivy",
|
||||
"aliases": [
|
||||
"Ivy",
|
||||
"ivy"
|
||||
],
|
||||
"extensions": [
|
||||
".im"
|
||||
],
|
||||
"configuration": "./ivy/language-configuration.json"
|
||||
},
|
||||
{
|
||||
"id": "ivy-asm",
|
||||
"aliases": [
|
||||
"Ivy Assembly",
|
||||
"ivy-asm"
|
||||
],
|
||||
"extensions": [
|
||||
".iasm"
|
||||
],
|
||||
"configuration": "./ivy-asm/language-configuration.json"
|
||||
}
|
||||
],
|
||||
"grammars": [
|
||||
{
|
||||
"language": "ivy",
|
||||
"scopeName": "source.ivy",
|
||||
"path": "./ivy/ivy.tmLanguage.json"
|
||||
},
|
||||
{
|
||||
"language": "ivy-asm",
|
||||
"scopeName": "source.ivy-asm",
|
||||
"path": "./ivy-asm/ivy-asm.tmLanguage.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user