diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2023-04-11 14:41:59 +0300 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2023-04-11 14:41:59 +0300 |
| commit | e240ef3e9a2854cfe390b47fb0b3d519c095193b (patch) | |
| tree | 7c479f3f2785f950a70a8f82080d08aa3264b7c5 /atk16-syntax-highlighting/package.json | |
| parent | dd3c90011ab33717e4c4175cd6804ae86582135f (diff) | |
Add syntax highlighting package
Diffstat (limited to 'atk16-syntax-highlighting/package.json')
| -rw-r--r-- | atk16-syntax-highlighting/package.json | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/atk16-syntax-highlighting/package.json b/atk16-syntax-highlighting/package.json new file mode 100644 index 0000000..ff6be2b --- /dev/null +++ b/atk16-syntax-highlighting/package.json @@ -0,0 +1,28 @@ +{ + "name": "atk16-syntax-highlighting", + "displayName": "ATK16 Syntax Highlighting", + "description": "Syntax highlighting for ATK16 assembly language", + "version": "0.0.1", + "publisher": "Jan Tuomi", + "engines": { + "vscode": "^1.60.0" + }, + "categories": ["Programming Languages"], + "contributes": { + "languages": [ + { + "id": "atk16", + "aliases": ["ATK16 Assembly", "atk16"], + "extensions": [".atk16"], + "configuration": "./language-configuration.json" + } + ], + "grammars": [ + { + "language": "atk16", + "scopeName": "source.atk16", + "path": "./syntaxes/atk16.tmLanguage.json" + } + ] + } +} |
