-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
231 lines (231 loc) · 7.99 KB
/
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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
{
"name": "better-extend-keybindings",
"displayName": "VSCode Better Extend Keymap \u2328\uFE0F",
"description": "\u2328\uFE0F Better extend keybindings to make VSCode better! 更好的 无冲突 增强快捷键 使 VSCode 更好!\u2764\uFE0F",
"version": "0.0.3",
"publisher": "heartacker",
"author": {
"name": "heartacker",
"email": "heartacker@outlook.com",
"url": "https://www.github.com/heartacker"
},
"homepage": "https://github.com/heartacker/vscode-better-extend-keybindings",
"repository": "https://github.com/heartacker/vscode-better-extend-keybindings",
"bugs": {
"url": "https://github.com/heartacker/vscode-better-extend-keybindings/issues",
"email": "heartacker@outlook.com"
},
"readme": "README.md",
"extensionPack": [
"ryu1kn.text-marker"
],
"extensionPackDel": [
"j-zeppenfeld.tab-indent-space-align"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": true,
"description": ""
},
"virtualWorkspaces": true
},
"engines": {
"vscode": "^1.22.0"
},
"icon": "extend-keyboard.png",
"categories": [
"Keymaps",
"Other",
"Snippets"
],
"keywords": [
"快捷键",
"键盘",
"高效",
"keymap",
"better",
"shortcut",
"useful",
"key bindings",
"helpful"
],
"contributes": {
"keybindings": [
{
"command": "workbench.view.scm",
"key": "ctrl+shift+g ctrl+shift+g",
"mac": "cmd+shift+g cmd+shift+g"
},
{
"command": "git.fetchAll",
"key": "ctrl+shift+g ctrl+f",
"mac": "cmd+shift+g cmd+f",
"when": "config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"
},
{
"command": "git.pushTo",
"key": "ctrl+shift+g ctrl+p",
"mac": "cmd+shift+g cmd+p",
"when": "config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"
},
{
"command": "git.pull",
"key": "ctrl+shift+g alt+p",
"mac": "cmd+shift+g alt+p",
"when": "config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"
},
{
"command": "git.sync",
"key": "ctrl+shift+g alt+s",
"mac": "cmd+shift+g alt+s",
"when": "config.git.enabled && !git.missing && gitOpenRepositoryCount != 0"
},
{
"command": "textmarker.toggleHighlight",
"key": "alt+f11",
"when": "editorTextFocus"
},
{
"command": "workbench.action.navigateBack",
"key": "f1"
},
{
"command": "workbench.action.navigateForward",
"key": "alt+f1",
"commentMacOS": "alt+f1"
},
{
"command": "editor.action.referenceSearch.trigger",
"key": "shift+f1",
"mac": "shift+f1",
"when": "editorHasReferenceProvider && editorTextFocus && !inReferenceSearchEditor && !isInEmbeddedEditor",
"commend": "查找引用"
},
{
"command": "editor.action.revealDefinition",
"key": "ctrl+f1",
"mac": "cmd+f1",
"when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"
},
{
"command": "goToNextReference",
"key": "ctrl+f1",
"mac": "cmd+f1",
"when": "inReferenceSearchEditor || referenceSearchVisible"
},
{
"command": "workbench.action.terminal.newWithProfile",
"key": "ctrl+shift+oem_3",
"mac": "cmd+shift+oem_3",
"when": "terminalProcessSupported",
"commen": "选择工作区和 shell"
},
{
"command": "workbench.action.toggleMaximizedPanel",
"key": "ctrl+shift+alt+j",
"mac": "cmd+shift+alt+j",
"comment": "切换最大化面板"
},
{
"command": "editor.action.insertSnippet",
"key": "ctrl+alt+i",
"mac": "cmd+alt+i",
"when": "editorTextFocus || editorHasSelection",
"comment": "触发代码参数提示"
},
{
"command": "editor.action.triggerParameterHints",
"key": "ctrl+shift+i",
"mac": "cmd+shift+i",
"when": "editorHasSignatureHelpProvider && editorTextFocus",
"comment": "插入代码提示"
},
{
"key": "alt+enter",
"mac": "alt+enter",
"command": "editor.action.quickFix",
"when": "editorHasCodeActionsProvider && editorTextFocus && !editorReadonly"
},
{
"key": "alt+enter",
"mac": "alt+enter",
"command": "problems.action.showQuickFixes",
"when": "problemFocus"
},
{
"command": "workbench.action.minimizeOtherEditors",
"key": "ctrl+win+oem_plus",
"comment": "ctrl+win+ + , 最大化编辑器组"
},
{
"command": "workbench.action.evenEditorWidths",
"key": "ctrl+win+oem_minus",
"comment": "ctrl+win+- , 恢复编辑器组大小"
},
{
"command": "workbench.action.debug.selectandstart",
"key": "ctrl+alt+f5",
"mac": "cmd+alt+f5",
"comment": "选择那个去运行 debug"
},
{
"command": "workbench.action.tasks.runTask",
"key": "ctrl+shift+alt+b",
"mac": "cmd+alt+b",
"comment": "选择那个去 build"
},
{
"command": "explorer.newFile",
"key": "ctrl+n",
"mac": "cmd+n",
"when": "explorerViewletFocus"
},
{
"command": "explorer.newFolder",
"key": "ctrl+shift+n",
"mac": "cmd+shift+n",
"when": "explorerViewletFocus"
},
{
"command": "workbench.action.toggleAuxiliaryBar",
"key": "ctrl+alt+b",
"mac": "cmd+alt+b"
},
{
"command": "references-view.findImplementations",
"key": "shift+alt+f11",
"mac": "shift+alt+f11",
"when": "editorFocus"
},
{
"key": "ctrl+alt+o",
"mac": "cmd+alt+o",
"command": "outline.focus"
},
{
"key": "ctrl+up",
"mac": "cmd++up",
"when": "terminalFocus",
"command": "workbench.action.terminal.scrollToPreviousCommand"
},
{
"key": "ctrl+down",
"mac": "cmd+down",
"command": "workbench.action.terminal.scrollToNextCommand",
"when": "terminalFocus"
},
{
"key": "ctrl+shift+up",
"mac": "cmd+shift+up",
"command": "workbench.action.terminal.selectToPreviousCommand",
"when": "terminalFocus"
},
{
"key": "ctrl+shift+down",
"mac": "cmd+shift+down",
"command": "workbench.action.terminal.selectToNextCommand",
"when": "terminalFocus"
}
]
}
}