aboutsummaryrefslogtreecommitdiffstats
path: root/atk16_syntax/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'atk16_syntax/package.json')
-rw-r--r--atk16_syntax/package.json48
1 files changed, 48 insertions, 0 deletions
diff --git a/atk16_syntax/package.json b/atk16_syntax/package.json
new file mode 100644
index 0000000..6a64b6c
--- /dev/null
+++ b/atk16_syntax/package.json
@@ -0,0 +1,48 @@
+{
+ "name": "atk16-syntax",
+ "displayName": "ATK16 Syntax",
+ "description": "Syntax highlighting and support for ATK16 assembly language",
+ "version": "0.0.1",
+ "publisher": "JanTuomi",
+ "license": "MIT",
+ "repository": "",
+ "engines": {
+ "vscode": "^1.60.0"
+ },
+ "categories": ["Programming Languages"],
+ "activationEvents": [
+ "onLanguage:atk16"
+ ],
+ "main": "./extension.js",
+ "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"
+ }
+ ],
+ "configurationDefaults": {
+ "editor.tokenColorCustomizations": {
+ "[Default Dark+]": {
+ "textMateRules": [
+ {
+ "scope": "comment.documentation.atk16",
+ "settings": {
+ "fontStyle": "italic"
+ }
+ }
+ ]
+ }
+ }
+ }
+ }
+}