-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.68 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.68 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
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
{
"name": "QuickFold",
"displayName": "QuickFold",
"publisher": "bs-code",
"icon": "images/logo.png",
"description": "QuickFold is a command that shows a quick picker with only fold commands as choices.",
"repository": "https://github.com/FloppyDisco/quick-fold",
"version": "0.1.3",
"engines": {
"vscode": "^1.91.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "quickFold.showPicker",
"title": "Quick Fold"
},
{
"command": "quickFold.origamiThatShit",
"title": "Used to select a QuickFold choice using a keybinding"
}
],
"keybindings": [
{
"key": "ctrl+e ctrl+f",
"command": "quickFold.showPicker",
"when": "editorTextFocus && foldingEnabled",
"mac": "cmd+e cmd+f",
"win": "ctrl+e ctrl+f",
"linux": "ctrl+e ctrl+f"
},
{
"key": "ctrl+f",
"command": "quickFold.origamiThatShit",
"when": "LetsMakePaperCranes",
"args": {
"foldCommand": "editor.foldRecursively"
},
"mac": "cmd+f",
"win": "ctrl+f",
"linux": "ctrl+f"
},
{
"key": "ctrl+a",
"command": "quickFold.origamiThatShit",
"when": "LetsMakePaperCranes",
"args": {
"foldCommand": "editor.foldAll"
},
"mac": "cmd+a",
"win": "ctrl+a",
"linux": "ctrl+a"
},
{
"key": "ctrl+x",
"command": "quickFold.origamiThatShit",
"when": "LetsMakePaperCranes",
"args": {
"foldCommand": "editor.foldAllExcept"
},
"mac": "cmd+x",
"win": "ctrl+x",
"linux": "ctrl+x"
},
{
"key": "ctrl+u",
"command": "quickFold.origamiThatShit",
"when": "LetsMakePaperCranes",
"args": {
"foldCommand": "editor.unfoldRecursively"
},
"mac": "cmd+u",
"win": "ctrl+u",
"linux": "ctrl+u"
},
{
"key": "ctrl+n",
"command": "quickFold.origamiThatShit",
"when": "LetsMakePaperCranes",
"args": {
"foldCommand": "editor.unfoldAll"
},
"mac": "cmd+n",
"win": "ctrl+n",
"linux": "ctrl+n"
},
{
"key": "ctrl+g",
"command": "quickFold.origamiThatShit",
"when": "LetsMakePaperCranes",
"args": {
"foldCommand": "editor.unfoldAllExcept"
},
"mac": "cmd+g",
"win": "ctrl+g",
"linux": "ctrl+g"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.91.0",
"@types/mocha": "^10.0.7",
"@types/node": "20.x",
"eslint": "^8.57.0",
"typescript": "^5.4.5",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.4.0"
}
}