From e240ef3e9a2854cfe390b47fb0b3d519c095193b Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Tue, 11 Apr 2023 14:41:59 +0300 Subject: Add syntax highlighting package --- atk16-syntax-highlighting/package.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 atk16-syntax-highlighting/package.json (limited to 'atk16-syntax-highlighting/package.json') 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" + } + ] + } +} -- cgit v1.3