-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 loc) · 1.49 KB
/
package.json
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "odin",
"icon": "icon.png",
"displayName": "Odin",
"description": "Odin syntax highlighting and idiomatic code snippets for Visual Studio Code by Luke I. Wilson and contributors.",
"version": "1.3.0",
"readme": "README.md",
"repository": {
"url": "https://github.com/asmoaesl/odin-vscode"
},
"publisher": "aesl",
"engines": {
"vscode": "^1.23.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "odin",
"aliases": [
"Odin",
"odin"
],
"extensions": [
".odin"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "odin",
"scopeName": "source.odin",
"path": "./syntaxes/odin.tmLanguage.json"
}
],
"snippets": [
{
"language": "odin",
"path": "./snippets/snippets.json"
}
],
"breakpoints": [{ "language": "odin" }],
"problemMatchers": [
{
"name": "odin",
"owner": "odin",
"fileLocation": [
"absolute"
],
"pattern": {
"regexp": "^(.*)\\((\\d+):(\\d+)\\)\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"message": 4
}
}
]
},
"__metadata": {
"id": "f3a333b3-12da-445d-b048-82a3b8f47a7c",
"publisherDisplayName": "Luke Wilson",
"publisherId": "d5bba197-70a1-416b-abc9-7f9ac3459710"
}
}