-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathschema.json
552 lines (552 loc) · 32 KB
/
schema.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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"override": {
"type": "string",
"examples": [
"#000000",
"#FF0000",
"#00FF00",
"#0000FF",
"#FFFF00",
"#FF00FF",
"#00FFFF",
"#FFFFFF",
"bold",
"underline",
"italic",
"bold #000000",
"bold #FF0000",
"bold #00FF00",
"bold #0000FF",
"bold #FFFF00",
"bold #FF00FF",
"bold #00FFFF",
"bold #FFFFFF",
"italic #000000",
"italic #FF0000",
"italic #00FF00",
"italic #0000FF",
"italic #FFFF00",
"italic #FF00FF",
"italic #00FFFF",
"italic #FFFFFF",
"underline #000000",
"underline #FF0000",
"underline #00FF00",
"underline #0000FF",
"underline #FFFF00",
"underline #FF00FF",
"underline #00FFFF",
"underline #FFFFFF"
]
}
},
"title": "jqp settings",
"description": "jqp settings\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#configuration",
"type": "object",
"properties": {
"theme": {
"title": "theme",
"description": "A theme\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#themes",
"type": "object",
"properties": {
"name": {
"title": "name",
"description": "A theme name\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#themes",
"type": "string",
"minLength": 1,
"enum": [
"abap",
"algol",
"arduino",
"autumn",
"borland",
"catppuccin-latte",
"colorful",
"emacs",
"friendly",
"github",
"gruvbox-light",
"hrdark",
"igor",
"lovelace",
"manni",
"monokai-light",
"murphy",
"onesenterprise",
"paradaiso-light",
"pastie",
"perldoc",
"pygments",
"solarized-light",
"tango",
"trac",
"visual_studio",
"vulcan",
"xcode",
"average",
"base16snazzy",
"catppuccin-frappe",
"catppuccin-macchiato",
"catppuccin-mocha",
"doom-one",
"doom-one2",
"dracula",
"fruity",
"github-dark",
"gruvbox",
"monokai",
"native",
"paradaiso-dark",
"rrt",
"solarized-dark",
"solarized-dark256",
"swapoff",
"vim",
"witchhazel",
"xcode-dark"
]
},
"chromaStyleOverrides": {
"title": "chroma style overrides",
"description": "Chroma style overrides\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"type": "object",
"properties": {
"bg": {
"title": "bg",
"description": "A property which corresponds to Background\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"chroma": {
"title": "chroma",
"description": "A property which corresponds to PreWrapper\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"line": {
"title": "line",
"description": "A property which corresponds to Line\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"ln": {
"title": "ln",
"description": "A property which corresponds to LineNumbers\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"lnt": {
"title": "lnt",
"description": "A property which corresponds to LineNumbersTable\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"hl": {
"title": "hl",
"description": "A property which corresponds to LineHighlight\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"lntable": {
"title": "lntable",
"description": "A property which corresponds to LineTable\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"lntd": {
"title": "lntd",
"description": "A property which corresponds to LineTableTD\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"cl": {
"title": "cl",
"description": "A property which corresponds to CodeLine\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"w": {
"title": "w",
"description": "A property which corresponds to Whitespace\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"err": {
"title": "err",
"description": "A property which corresponds to Error\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"x": {
"title": "x",
"description": "A property which corresponds to Other\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"k": {
"title": "k",
"description": "A property which corresponds to Keyword\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"kc": {
"title": "kc",
"description": "A property which corresponds to KeywordConstant\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"kd": {
"title": "kd",
"description": "A property which corresponds to KeywordDeclaration\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"kn": {
"title": "kn",
"description": "A property which corresponds to KeywordNamespace\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"kp": {
"title": "kp",
"description": "A property which corresponds to KeywordPseudo\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"kr": {
"title": "kr",
"description": "A property which corresponds to KeywordReserved\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"kt": {
"title": "kt",
"description": "A property which corresponds to KeywordType\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"n": {
"title": "n",
"description": "A property which corresponds to Name\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"na": {
"title": "na",
"description": "A property which corresponds to NameAttribute\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"nb": {
"title": "nb",
"description": "A property which corresponds to NameBuiltin\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"bp": {
"title": "bp",
"description": "A property which corresponds to NameBuiltinPseudo\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"nc": {
"title": "nc",
"description": "A property which corresponds to NameClass\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"no": {
"title": "no",
"description": "A property which corresponds to NameConstant\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"nd": {
"title": "nd",
"description": "A property which corresponds to NameDecorator\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"ni": {
"title": "ni",
"description": "A property which corresponds to NameEntity\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"ne": {
"title": "ne",
"description": "A property which corresponds to NameException\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"nf": {
"title": "nf",
"description": "A property which corresponds to NameFunction\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"fm": {
"title": "fm",
"description": "A property which corresponds to NameFunctionMagic\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"py": {
"title": "py",
"description": "A property which corresponds to NameProperty\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"nl": {
"title": "nl",
"description": "A property which corresponds to NameLabel\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"nn": {
"title": "nn",
"description": "A property which corresponds to NameNamespace\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"nx": {
"title": "nx",
"description": "A property which corresponds to NameOther\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"nt": {
"title": "nt",
"description": "A property which corresponds to NameTag\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"nv": {
"title": "nv",
"description": "A property which corresponds to NameVariable\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"vc": {
"title": "vc",
"description": "A property which corresponds to NameVariableClass\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"vg": {
"title": "vg",
"description": "A property which corresponds to NameVariableGlobal\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"vi": {
"title": "vi",
"description": "A property which corresponds to NameVariableInstance\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"vm": {
"title": "vm",
"description": "A property which corresponds to NameVariableMagic\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"l": {
"title": "l",
"description": "A property which corresponds to Literal\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"ld": {
"title": "ld",
"description": "A property which corresponds to LiteralDate\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"s": {
"title": "s",
"description": "A property which corresponds to String\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"sa": {
"title": "sa",
"description": "A property which corresponds to StringAffix\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"sb": {
"title": "sb",
"description": "A property which corresponds to StringBacktick\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"sc": {
"title": "sc",
"description": "A property which corresponds to StringChar\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"dl": {
"title": "dl",
"description": "A property which corresponds to StringDelimiter\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"sd": {
"title": "sd",
"description": "A property which corresponds to StringDoc\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"s2": {
"title": "s2",
"description": "A property which corresponds to StringDouble\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"se": {
"title": "se",
"description": "A property which corresponds to StringEscape\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"sh": {
"title": "sh",
"description": "A property which corresponds to StringHeredoc\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"si": {
"title": "si",
"description": "A property which corresponds to StringInterpol\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"sx": {
"title": "sx",
"description": "A property which corresponds to StringOther\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"sr": {
"title": "sr",
"description": "A property which corresponds to StringRegex\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"s1": {
"title": "s1",
"description": "A property which corresponds to StringSingle\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"ss": {
"title": "ss",
"description": "A property which corresponds to StringSymbol\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"m": {
"title": "m",
"description": "A property which corresponds to Number\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"mb": {
"title": "mb",
"description": "A property which corresponds to NumberBin\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"mf": {
"title": "mf",
"description": "A property which corresponds to NumberFloat\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"mh": {
"title": "mh",
"description": "A property which corresponds to NumberHex\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"mi": {
"title": "mi",
"description": "A property which corresponds to NumberInteger\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"il": {
"title": "il",
"description": "A property which corresponds to NumberIntegerLong\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"mo": {
"title": "mo",
"description": "A property which corresponds to NumberOct\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"o": {
"title": "o",
"description": "A property which corresponds to Operator\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"ow": {
"title": "ow",
"description": "A property which corresponds to OperatorWord\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"p": {
"title": "p",
"description": "A property which corresponds to Punctuation\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"c": {
"title": "c",
"description": "A property which corresponds to Comment\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"ch": {
"title": "ch",
"description": "A property which corresponds to CommentHashbang\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"cm": {
"title": "cm",
"description": "A property which corresponds to CommentMultiline\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"cp": {
"title": "cp",
"description": "A property which corresponds to CommentPreproc\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"cpf": {
"title": "cpf",
"description": "A property which corresponds to CommentPreprocFile\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"c1": {
"title": "c1",
"description": "A property which corresponds to CommentSingle\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"cs": {
"title": "cs",
"description": "A property which corresponds to CommentSpecial\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"g": {
"title": "g",
"description": "A property which corresponds to Generic\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"gd": {
"title": "gd",
"description": "A property which corresponds to GenericDeleted\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"ge": {
"title": "ge",
"description": "A property which corresponds to GenericEmph\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"gr": {
"title": "gr",
"description": "A property which corresponds to GenericError\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"gh": {
"title": "gh",
"description": "A property which corresponds to GenericHeading\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"gi": {
"title": "gi",
"description": "A property which corresponds to GenericInserted\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"go": {
"title": "go",
"description": "A property which corresponds to GenericOutput\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"gp": {
"title": "gp",
"description": "A property which corresponds to GenericPrompt\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"gs": {
"title": "gs",
"description": "A property which corresponds to GenericStrong\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"gu": {
"title": "gu",
"description": "A property which corresponds to GenericSubheading\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"gt": {
"title": "gt",
"description": "A property which corresponds to GenericTraceback\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
},
"gl": {
"title": "gl",
"description": "A property which corresponds to GenericUnderline\nhttps://github.com/noahgorstein/jqp?tab=readme-ov-file#chroma-style-overrides",
"$ref": "#/definitions/override"
}
},
"minProperties": 1,
"additionalProperties": false
}
},
"minProperties": 1,
"additionalProperties": false
}
},
"minProperties": 1,
"additionalProperties": false
}