made a basic extension
This commit is contained in:
parent
ae1cc90a2a
commit
10eef39f12
6 changed files with 264 additions and 1 deletions
extension
41
extension/package.json
Normal file
41
extension/package.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "asl-extension",
|
||||
"version": "0.2.0",
|
||||
"description": "The extension for Astro Lang",
|
||||
"license": "MIT",
|
||||
"author": "Afonya",
|
||||
"type": "module",
|
||||
"main": "index.js",
|
||||
"engines": {
|
||||
"vscode": "^1.22.0"
|
||||
},
|
||||
"contributes": {
|
||||
"languages": [
|
||||
{
|
||||
"id": "astrolang",
|
||||
"aliases": [
|
||||
"Astro Lang",
|
||||
"AstroLang",
|
||||
"ASL"
|
||||
],
|
||||
"extensions": [
|
||||
".asl"
|
||||
],
|
||||
"configuration": "./language-configuration.json"
|
||||
}
|
||||
],
|
||||
"grammars": [
|
||||
{
|
||||
"language": "astrolang",
|
||||
"scopeName": "source.astrolang",
|
||||
"path": "./astrolang.tmLanguage.json"
|
||||
}
|
||||
],
|
||||
"snippets": [
|
||||
{
|
||||
"language": "astrolang",
|
||||
"path": "./snippets.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue