-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.63 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.63 KB
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
{
"name": "custom-folding-extension",
"displayName": "Custom Folding Extension (beta) @MHRoni",
"description": "This is the beta version of Custom Folding Extension with experimental features.",
"version": "1.0.1",
"publisher": "MHRoni",
"engines": {
"vscode": "^1.60.0"
},
"activationEvents": [
"*"
],
"main": "./extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "Custom Folding Extension",
"properties": {
"customFolding.enableAllFeatures": {
"type": "boolean",
"default": true,
"description": "Master toggle to enable or disable all custom folding features."
},
"customFolding.enableNormalCollapse": {
"type": "boolean",
"default": true,
"description": "Enable or disable the normal collapse feature."
},
"customFolding.startFoldingMarker": {
"type": "string",
"default": "// <",
"description": "The marker used to start a folding region."
},
"customFolding.endFoldingMarker": {
"type": "string",
"default": "// >",
"description": "The marker used to end a folding region."
},
"customFolding.enableInstantCollapse": {
"type": "boolean",
"default": true,
"description": "Enable instant collapse feature that collapses code until an empty line."
},
"customFolding.instantCollapseMarker": {
"type": "string",
"default": "// >>",
"description": "The marker used for instant collapse."
}
}
},
"commands": [
{
"command": "extension.toggleCustomFolding",
"title": "Toggle Custom Folding Ranges",
"category": "Custom Folding"
}
],
"keybindings": [
{
"command": "extension.toggleCustomFolding",
"key": "ctrl+. ctrl+a",
"mac": "cmd+. cmd+a",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "echo 'No compilation step for JS'",
"test": "npm run test"
},
"devDependencies": {
"vscode": "^1.60.0",
"eslint": "^7.x.x"
},
"repository": {
"type": "git",
"url": "https://github.com/MHRoni-dev/Custom-Folding.git"
}
}