-
Notifications
You must be signed in to change notification settings - Fork 2
/
sublime-package.json
33 lines (33 loc) · 1.01 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
{
"contributions": {
"settings": [
{
"file_patterns": [
"/Preferences.sublime-settings"
],
"schema": {
"properties": {
"inline_fold.rules": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": ["fold_selector"],
"properties": {
"fold_selector": {
"type": "string",
"markdownDescription": "The `fold_selector` should be the region that should be folded."
},
"preceding_text": {
"type": "string",
"description": "If specified, the region will be folded only if the `preceding_text` is before the `fold_selector` region.\nInlineFold will scan max on line before to find the `preceding_text`."
}
}
}
}
}
}
}
]
}
}