-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
sublime-package.json
83 lines (83 loc) · 2.63 KB
/
sublime-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
{
"contributions": {
"settings": [
//////////////
// settings //
//////////////
{
"file_patterns": [
"/RainbowIndent.sublime-settings"
],
"schema": {
"$id": "sublime://settings/RainbowIndent",
"type": "object",
"allOf": [
{
"$ref": "sublime://settings/RainbowIndent#/definitions/root_plugin_settings"
}
],
"definitions": {
"root_plugin_settings": {
"properties": {
"debounce": {
"description": "The time (in secondes) to wait for the next event to be triggered.",
"type": "number",
"default": 0.2
},
"level_colors": {
"description": "Scopes in the color scheme to be used for indent levels.",
"type": "array",
"items": {
"$comment": "Scope for coloring.",
"type": "string"
},
"default": []
},
"level_style": {
"description": "Style of the indent indicator.",
"type": "string",
"enum": [
"block",
"line"
],
"enumDescriptions": [
"Block style",
"Line style"
],
"default": "block"
},
"enabled_selector": {
"markdownDescription": "Enable this plugin in these base scopes. An empty string will match any scope. For the expression of a scope selector, see https://www.sublimetext.com/docs/selectors.html",
"type": "string",
"default": "source | text | embedding"
},
"file_size_limit": {
"markdownDescription": "The max file size to enable the plugin. Set to negative value to disable the limit.",
"type": "integer",
"default": 10485760
}
}
}
}
}
}
//////////////////////
// project settings //
//////////////////////
/*{
"file_patterns": ["/*.sublime-project"],
"schema": {
"properties": {
"settings": {
"properties": {
"RainbowIndent": {
"$ref": "sublime://settings/RainbowIndent#/definitions/root_plugin_settings"
}
}
}
}
}
}*/
]
}
}