2024-11-08 22:11:29 +00:00
|
|
|
{
|
|
|
|
"name": "central-asm",
|
|
|
|
"displayName": "Central(ASM)",
|
|
|
|
"description": "Syntax highlighting for Central(ASM)",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"engines": {
|
|
|
|
"vscode": "^1.95.0"
|
|
|
|
},
|
|
|
|
"categories": [
|
|
|
|
"Programming Languages"
|
|
|
|
],
|
|
|
|
"contributes": {
|
|
|
|
"languages": [
|
|
|
|
{
|
|
|
|
"id": "central-asm",
|
|
|
|
"aliases": [
|
|
|
|
"Central(ASM)",
|
|
|
|
"central-asm"
|
|
|
|
],
|
|
|
|
"extensions": [
|
|
|
|
".s",
|
|
|
|
".S",
|
|
|
|
".m",
|
|
|
|
".M"
|
|
|
|
],
|
|
|
|
"configuration": "./language-configuration.json"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"grammars": [
|
|
|
|
{
|
|
|
|
"language": "central-asm",
|
|
|
|
"scopeName": "source.central-asm",
|
|
|
|
"path": "./syntaxes/central-asm.tmLanguage.json"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"configurationDefaults": {
|
|
|
|
"[central-asm]": {
|
|
|
|
"editor.guides.indentation": false,
|
|
|
|
"editor.detectIndentation": false,
|
|
|
|
"editor.insertSpaces": true,
|
2024-11-09 11:50:15 +00:00
|
|
|
"editor.indentSize": 2,
|
2024-11-08 22:11:29 +00:00
|
|
|
"editor.rulers": [
|
|
|
|
2,
|
|
|
|
4,
|
|
|
|
120
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|