summaryrefslogtreecommitdiff
path: root/editors/vscode/package.json
diff options
context:
space:
mode:
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"
+ }]
+ }
+}