-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
209 lines (209 loc) · 5.71 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
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
{
"name": "autocomplete-latex",
"main": "./lib/main",
"version": "1.0.0",
"description": "A provider of LaTeX autocompletions",
"keywords": [
"latex",
"autocomplete"
],
"bugs": {
"url": "https://github.com/Aerijo/autocomplete-latex/issues"
},
"author": "Aerijo",
"repository": "https://github.com/Aerijo/autocomplete-latex",
"license": "MIT",
"engines": {
"atom": ">=1.49.0 <2.0.0"
},
"activationHooks": [
"text.tex.latex:root-scope-used",
"language-latex:grammar-used",
"language-latex2e:grammar-used"
],
"dependencies": {
"atom-package-deps": "4.6.0",
"csv-parse": "4.11.1",
"fuzzaldrin-plus": "0.6.0",
"scoped-property-store": "0.17.0",
"season": "6.0.2"
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"4.0.0": "getAutocompleteProvider"
}
}
},
"consumedServices": {
"busy-signal": {
"versions": {
"1.0.0": "consumeBusySignal"
}
},
"atom-ide-busy-signal": {
"versions": {
"0.1.0": "consumeAtomIdeBusySignal"
}
}
},
"package-deps": [
"busy-signal",
"autocomplete-paths"
],
"devDependencies": {
"@types/atom": "^1.40.4",
"@types/fuzzaldrin-plus": "^0.6.1",
"@types/node": "^14.0.26",
"prettier": "^2.0.5"
},
"configSchema": {
"userCompletionsPath": {
"description": "Use this if you want to add your own custom completions that are not present in the default set. See docs for syntax.",
"type": "string",
"default": "",
"order": 1
},
"enablePackageCompletions": {
"description": "Enable to suggest package names inside of \\usepackage{}. Requires `tlmgr` to be installed.",
"type": "boolean",
"default": true,
"order": 2.5
},
"enableCitationCompletions": {
"description": "Experimental: typing `@...` will bring up a list of references scraped from the .bib file.",
"type": "boolean",
"default": true,
"order": 3
},
"enableBuiltinProvider": {
"description": "Turning this on will allow suggestions from the builtin (`autocomplete-plus`) provider to appear.",
"type": "boolean",
"default": false,
"order": 4
},
"minPrefixLength": {
"title": "Minimum Prefix Length",
"description": "This value will suppress suggestions from appearing until the prefix is at least as long (includes the \\\\)",
"type": "integer",
"default": 2,
"order": 5
},
"disableForScopeSelector": {
"title": "Disabled Scopes",
"description": "Disable completions in these scopes. Comma separated. Restart Atom for changes to take effect.",
"type": "string",
"default": ".comment",
"order": 6
},
"citationFormat": {
"description": "What will be inserted around the citation when activated from a `@...`. ${cite} means the citation key, otherwise acts as a snippet.",
"type": "string",
"default": "\\\\autocite{${cite}}",
"order": 7
},
"commandCompletionRegex": {
"description": " ⚠️ Advanced: use this to define a custom general prefix pattern.",
"type": "string",
"default": "[\\\\\\!]\\w*$|\\$+$",
"order": 8
},
"citationCompletionRegex": {
"description": " ⚠️ Advanced: use this to define a custom citation prefix pattern.",
"type": "string",
"default": "@\\S*$",
"order": 9
},
"enabledDefaultCompletions": {
"description": "Selectively enable builtin completions based on package and function",
"type": "object",
"order": 10,
"properties": {
"magicComments": {
"order": 1,
"title": "Magic comments",
"type": "boolean",
"default": true
},
"formatting": {
"order": 2,
"title": "Formatting (bold, italic, etc.)",
"type": "boolean",
"default": true
},
"generalMath": {
"order": 3,
"title": "General math (frac, sum, etc.)",
"type": "boolean",
"default": true
},
"imports": {
"order": 4,
"title": "Imports (usepackage, input, etc.)",
"type": "boolean",
"default": true
},
"generalEnvironments": {
"order": 5,
"title": "General environments (figure, table, etc.)",
"type": "boolean",
"default": true
},
"sectioning": {
"order": 6,
"title": "Sectioning commands (section, newpage, etc.)",
"type": "boolean",
"default": true
},
"debugging": {
"order": 7,
"title": "Tracing suite (tracingmacros, etc.)",
"type": "boolean",
"default": true
},
"amsmath": {
"order": 8,
"title": "amsmath",
"type": "boolean",
"default": true
},
"biblatex": {
"order": 9,
"title": "biblatex",
"type": "boolean",
"default": true
},
"hyperref": {
"order": 10,
"title": "hyperref",
"type": "boolean",
"default": true
},
"minted": {
"order": 11,
"title": "minted",
"type": "boolean",
"default": true
},
"siunitx": {
"order": 12,
"title": "siunitx",
"type": "boolean",
"default": true
},
"tikz": {
"order": 13,
"title": "tikz",
"type": "boolean",
"default": true
},
"xcolor": {
"order": 14,
"title": "xcolor",
"type": "boolean",
"default": true
}
}
}
}
}