-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 986 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "tagxp",
"displayName": "tag-xp",
"description": "An extension for TagXP syntax highlighting.",
"icon": "icon/TAG Icon 2.png",
"version": "0.0.1",
"publisher": "DMD",
"repository": {
"type": "git",
"url": "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/DaveyD/TagSyntaxExample.git"
},
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Languages", "Themes"
],
"contributes": {
"languages": [{
"id": "tagxp",
"aliases": ["Tag", "tag"],
"extensions": [".prg"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "tagxp",
"scopeName": "source.tagxp",
"path": "./syntaxes/tagxp.tmLanguage.json"
}],
"themes": [{
"label": "Mild Dark+TagXP",
"language": "tagxp",
"uiTheme": "vs-dark",
"path": "./themes/tagxp-theme.json"
}]
}
}