-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsnippets.json
75 lines (75 loc) · 2.29 KB
/
snippets.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
{
"jupyter.lab.setting-icon": "custom-ui-components:codeSnippetIcon",
"jupyter.lab.setting-icon-label": "Code Snippet",
"title": "Code Snippet Manager",
"description": "Code Snippet Manager Settings",
"version": "1.0.0",
"jupyter.lab.shortcuts": [
{
"command": "codeSnippet:save-as-snippet",
"keys": ["Accel Shift A"],
"selector": ".jp-Notebook"
},
{
"command": "codeSnippet:save-as-snippet",
"keys": ["Accel Shift A"],
"selector": ".jp-FileEditor"
}
],
"properties": {
"snippets": {
"title": "List of code snippets",
"description": "A snippet is defined by a 'id', 'name', and 'language'",
"items": { "$ref": "#/definitions/snippet" },
"type": "array",
"default": []
},
"snippetPreviewFontSize": {
"title": "Font Size of Preview",
"type": "number",
"default": 3,
"description": "Change the font size of preview to see its content"
}
},
"additionalProperties": false,
"type": "object",
"definitions": {
"snippet": {
"properties": {
"id": {
"title": "Unique id",
"type": "number"
},
"name": {
"title": "Unique name",
"type": "string"
},
"description": {
"title": "Description",
"type": "string"
},
"language": {
"title": "Language",
"type": "string"
},
"code": {
"title": "Code",
"type": "string"
},
"tags": {
"title": "Tags",
"items": { "$ref": "#/definitions/tag"},
"type": "array",
"default": []
}
},
"required": ["id", "name", "language", "code"],
"additionalProperties": false,
"type": "object"
},
"tag": {
"title": "Unique Tag Name",
"type": "string"
}
}
}