1
0
mirror of https://github.com/ksherlock/x65.git synced 2025-01-01 15:30:06 +00:00
x65/vscode/package.json
Carl-Henrik Skårstedt 2b52ca29e4 Visual Studio Code colorizing extension, Error includes line number of undefined label reference
* PrintError has an optional argument for enclosing file
* Visual Studio Code extension
2017-01-28 13:29:42 -08:00

43 lines
923 B
JSON

{
"name" : "x65",
"displayName" : "x65",
"description" : "x65 Assembler syntax",
"version" : "0.1.0",
"publisher" : "x65",
"icon": "x65.png",
"license" : "maybe",
"engines" : {
"vscode" : "^1.0.0"
},
"categories" : [
"Languages"
],
"keywords" : [
"x65", "6502", "6510", "65816"
],
"contributes" : {
"languages" : [
{
"id" : "x65",
"aliases" : ["6502"],
"extensions" : [ ".s", ".i" ],
"configuration" : "./x65.configuration.json"
}
],
"grammars" : [
{
"language" : "x65",
"scopeName" : "source.asm.6502.x65",
"path" : "./x65.tmLanguage"
}
],
"themes" : [
{
"label": "x65",
"uiTheme": "vs-dark",
"path": "./x65.tmTheme"
}
]
}
}