This repository has been archived by the owner on Dec 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.libsonnet
142 lines (124 loc) · 3.21 KB
/
package.libsonnet
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
Default():: {
engines: {},
categories: [],
activationEvents: [],
contributes: $.contributes.Default(),
},
Name(name):: {name: name},
DisplayName(displayName):: {displayName: displayName},
Description(description):: {description: description},
Version(version):: {version: version},
Publisher(publisher):: {publisher: publisher},
License(license):: {license: license},
Homepage(homepage):: {homepage: homepage},
Category(category):: {categories+: [category]},
ActivationEvent(event):: {activationEvents+: [event]},
Main(main):: {main: main},
repository:: {
Default(type, url):: {
repository: {
type: type,
url: url,
},
},
},
engines:: {
VsCode(vscodeVersion):: {
engines+: {
vscode: vscodeVersion,
},
},
},
event:: {
OnLanguage(languageId):: "onLanguage:%s" % languageId,
OnCommand(id):: "onCommand:%s" % id,
},
languageSpec:: {
Default(name, displayName, extensions):: {
name: name,
displayName: displayName,
extensions: extensions,
}
},
contributes:: {
Default():: {
languages: [],
grammars: [],
commands: [],
keybindings: [],
},
Language(language):: {contributes+: {languages+: [language]}},
Grammar(grammar):: {contributes+: {grammars+: [grammar]}},
Command(command):: {contributes+: {commands+: [command]}},
Keybinding(keybinding):: {contributes+: {keybindings+: [keybinding]}},
DefaultConfiguration(title, properties):: {
contributes+: {
configuration: {
type: "object",
title: title,
properties: properties,
},
},
},
configuration:: {
DefaultStringProperty(property, description, default=null):: {
[property]: {
type: "string",
default: default,
description: description,
},
},
DefaultObjectProperty(property, description, default=null):: {
[property]: {
type: "object",
default: default,
description: description,
},
},
DefaultArrayProperty(property, description, default=[]):: {
[property]: {
type: "array",
default: default,
description: description,
},
},
DefaultEnumProperty(property, description, enum=[], default=null):: {
[property]: {
default: default,
enum: enum,
description: description,
},
},
},
command:: {
Default(command, title):: {
command: command,
title: title,
},
},
keybinding:: {
FromCommand(command, when, key, mac=null):: {
command: command.command,
key: key,
[if !(mac == null) then "mac"]: mac,
when: when,
},
},
language:: {
FromLanguageSpec(language, configurationFile):: {
id: language.name,
aliases: [language.displayName, language.name],
extensions: language.extensions,
configuration: configurationFile,
},
},
grammar:: {
FromLanguageSpec(language, scopeName, path):: {
language: language.name,
scopeName: scopeName,
path: path,
},
},
},
}