all repos — xyw @ 9b95f8c88d280f439af31a5aa65421325eed00f3

A minimal virtual machine and assembler for terminals.

xyw-vscode/package.json

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
{
    "name": "xyw-language",
    "displayName": "XYW Assembly Language",
    "description": "Syntax highlighting for the xyw assembly language",
    "version": "0.1.0",
    "publisher": "xyw",
    "engines": {
        "vscode": "^1.60.0"
    },
    "categories": [
        "Programming Languages"
    ],
    "contributes": {
        "languages": [
            {
                "id": "xyw",
                "aliases": [
                    "XYW",
                    "xyw"
                ],
                "extensions": [
                    ".xyw"
                ],
                "configuration": "./language-configuration.json"
            }
        ],
        "grammars": [
            {
                "language": "xyw",
                "scopeName": "source.xyw",
                "path": "./syntaxes/xyw.tmLanguage.json"
            }
        ]
    }
}