summaryrefslogtreecommitdiff
path: root/editors/vscode/package.json
diff options
context:
space:
mode:
authorallexanderbergmans <allexander.bergmans@student.elisa.be>2026-07-03 12:17:10 +0200
committerallexanderbergmans <allexander.bergmans@student.elisa.be>2026-07-03 12:17:10 +0200
commit887875959aa84af92291db334898aaa20956e632 (patch)
tree62f68d6e93cf444e5605a40c3e8ea7ec0bd89f49 /editors/vscode/package.json
Diffstat (limited to 'editors/vscode/package.json')
-rw-r--r--editors/vscode/package.json27
1 files changed, 27 insertions, 0 deletions
diff --git a/editors/vscode/package.json b/editors/vscode/package.json
new file mode 100644
index 0000000..d591994
--- /dev/null
+++ b/editors/vscode/package.json
@@ -0,0 +1,27 @@
+{
+ "name": "isa-syntax",
+ "displayName": "ISA Definition Syntax Highlighting",
+ "description": "Syntax highlighting for .isa ISA definition files (used by the MyISA doc generator)",
+ "version": "1.0.0",
+ "publisher": "myisa",
+ "license": "MIT",
+ "engines": { "vscode": "^1.80.0" },
+ "categories": ["Programming Languages"],
+ "contributes": {
+ "languages": [{
+ "id": "isa",
+ "aliases": ["ISA Definition", "isa"],
+ "extensions": [".isa"],
+ "configuration": "./language-configuration.json",
+ "icon": {
+ "light": "./icon.png",
+ "dark": "./icon.png"
+ }
+ }],
+ "grammars": [{
+ "language": "isa",
+ "scopeName": "source.isa",
+ "path": "./syntaxes/isa.tmLanguage.json"
+ }]
+ }
+}