@lvce-editor/shared-process 0.13.0 → 0.14.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config/defaultKeyBindings.json +1 -784
- package/config/defaultSettings.json +8 -1
- package/extensions/builtin.language-basics-css/extension.json +2 -1
- package/extensions/builtin.language-basics-css/languageConfiguration.json +21 -0
- package/extensions/builtin.language-basics-css/src/tokenizeCss.js +10 -1
- package/extensions/builtin.language-basics-dotenv/extension.json +5 -1
- package/extensions/builtin.language-basics-go/src/tokenizeGo.js +79 -10
- package/extensions/builtin.language-basics-html/languageConfiguration.json +66 -0
- package/extensions/builtin.language-basics-html/src/tokenizeHtml.js +89 -27
- package/extensions/builtin.language-basics-java/src/tokenizeJava.js +6 -5
- package/extensions/builtin.language-basics-javascript/src/tokenizeJavaScript.js +29 -1
- package/extensions/builtin.language-basics-json/extension.json +4 -2
- package/extensions/builtin.language-basics-json/src/tokenizeJson.js +3 -0
- package/extensions/builtin.language-basics-jsx/src/tokenizeJsx.js +18 -5
- package/extensions/builtin.language-basics-typescript/src/tokenizeTypeScript.js +26 -0
- package/extensions/builtin.language-basics-vue/src/tokenizeVue.js +1 -1
- package/extensions/builtin.language-basics-xml/extension.json +3 -1
- package/extensions/builtin.theme-atom-one-dark/color-theme.json +2 -2
- package/extensions/builtin.theme-ayu/color-theme.json +6 -2
- package/extensions/builtin.theme-cobalt2/color-theme.json +5 -2
- package/extensions/builtin.theme-slime/color-theme.json +2 -2
- package/package.json +10 -11
- package/src/parts/Assert/Assert.js +1 -6
- package/src/parts/AssertionError/AssertionError.js +6 -0
- package/src/parts/BulkReplacement/BulkReplacement.ipc.js +7 -0
- package/src/parts/BulkReplacement/BulkReplacement.js +20 -0
- package/src/parts/BulkReplacementContent/BulkReplacementContent.js +30 -0
- package/src/parts/ChildProcessError/ChildProcessError.js +45 -0
- package/src/parts/ChromeExtension/ChromeExtension.js +2 -5
- package/src/parts/CleanStack/CleanStack.js +90 -2
- package/src/parts/CliList/CliList.js +3 -0
- package/src/parts/ClipBoard/ClipBoard.js +2 -2
- package/src/parts/ClipBoard/ClipBoardGnome.js +1 -2
- package/src/parts/ClipBoard/ClipBoardNoop.js +2 -2
- package/src/parts/ClipBoard/ClipBoardWindows.js +1 -3
- package/src/parts/Command/Command.js +5 -10
- package/src/parts/Credentials/Credentials.ipc.js +5 -5
- package/src/parts/Credentials/Credentials.js +2 -10
- package/src/parts/Desktop/Desktop.js +22 -0
- package/src/parts/Download/Download.js +2 -2
- package/src/parts/Error/Error.js +1 -1
- package/src/parts/ErrorCodes/ErrorCodes.js +2 -1
- package/src/parts/ErrorHandling/ErrorHandling.js +8 -14
- package/src/parts/ExportStatic/ExportStatic.js +8 -3
- package/src/parts/ExtensionHost/ExtensionHost.js +1 -2
- package/src/parts/ExtensionHost/ExtensionHostKeyBindings.js +0 -12
- package/src/parts/ExtensionHostRpc/ExtensionHostRpc.js +1 -1
- package/src/parts/ExtensionInstallFromFile/ExtensionInstallFromFile.js +1 -1
- package/src/parts/ExtensionInstallFromGitHub/ExtensionInstallFromGitHub.js +1 -1
- package/src/parts/ExtensionInstallFromUrl/ExtensionInstallFromUrl.js +1 -1
- package/src/parts/ExtensionLink/ExtensionLink.js +0 -19
- package/src/parts/ExtensionList/ExtensionList.js +11 -2
- package/src/parts/ExtensionManagement/ExtensionManagement.js +6 -58
- package/src/parts/ExtensionManagement/ExtensionManagementColorTheme.js +3 -1
- package/src/parts/ExtensionManagement/ExtensionManagementIconTheme.js +1 -1
- package/src/parts/ExtensionManagement/ExtensionManagementLanguages.js +7 -3
- package/src/parts/ExtensionManifestInputType/ExtensionManifestInputType.js +2 -0
- package/src/parts/ExtensionManifests/ExtensionManifests.js +3 -0
- package/src/parts/ExtensionManifests/ExtensionManifestsFromFolder.js +5 -15
- package/src/parts/ExtensionManifests/ExtensionManifestsFromLinkedExtensionsFolder.js +56 -0
- package/src/parts/ExtensionUninstall/ExtensionUninstall.js +18 -0
- package/src/parts/ExtensionUnlink/ExtensionUnlink.js +1 -1
- package/src/parts/Extract/Extract.js +2 -6
- package/src/parts/ExtractZip/ExtractZip.js +1 -1
- package/src/parts/{Error → FileNotFoundError}/FileNotFoundError.js +9 -2
- package/src/parts/FileSystem/FileSystem.js +6 -32
- package/src/parts/FirstNodeWorkerEventType/FirstNodeWorkerEventType.js +5 -0
- package/src/parts/GetDirentType/GetDirentType.js +27 -0
- package/src/parts/GetFirstNodeChildProcessEvent/GetFirstNodeChildProcessEvent.js +39 -0
- package/src/parts/GetFirstNodeWorkerEvent/GetFirstNodeWorkerEvent.js +21 -0
- package/src/parts/GetNewLineIndex/GetNewLineIndex.js +9 -0
- package/src/parts/GetResponse/GetResponse.js +16 -6
- package/src/parts/GetTextSearchRipGrepArgs/GetTextSearchRipGrepArgs.js +14 -0
- package/src/parts/InstallExtension/InstallExtension.ipc.js +6 -0
- package/src/parts/InstallExtension/InstallExtension.js +33 -0
- package/src/parts/IpcParent/IpcParent.js +9 -0
- package/src/parts/IpcParentModule/IpcParentModule.js +12 -0
- package/src/parts/IpcParentType/IpcParentType.js +2 -0
- package/src/parts/IpcParentWithNodeForkedProcess/IpcParentWithNodeForkedProcess.js +49 -0
- package/src/parts/IpcParentWithNodeWorker/IpcParentWithNodeWorker.js +36 -0
- package/src/parts/IsEnoentErrorWindows/IsEnoentErrorWindows.js +3 -0
- package/src/parts/IsIgnoredError/IsIgnoredError.js +14 -0
- package/src/parts/Json/Json.js +3 -5
- package/src/parts/JsonError/JsonError.js +8 -14
- package/src/parts/JsonParsingError/JsonParsingError.js +17 -0
- package/src/parts/Jsonc/Jsonc.js +304 -0
- package/src/parts/JsoncCharCode/JsoncCharCode.js +23 -0
- package/src/parts/JsoncFile/JsoncFile.js +8 -0
- package/src/parts/JsoncTokenType/JsoncTokenType.js +11 -0
- package/src/parts/LimitString/LimitString.js +3 -1
- package/src/parts/MergeStacks/MergeStacks.js +3 -2
- package/src/parts/Module/Module.js +4 -0
- package/src/parts/ModuleId/ModuleId.js +2 -0
- package/src/parts/ModuleMap/ModuleMap.js +4 -0
- package/src/parts/Native/Native.js +1 -1
- package/src/parts/ParentIpc/ParentIpc.js +2 -1
- package/src/parts/Platform/Platform.js +0 -21
- package/src/parts/Preferences/Preferences.js +6 -8
- package/src/parts/PrettyError/PrettyError.js +16 -7
- package/src/parts/PrintPrettyError/PrintPrettyError.js +3 -1
- package/src/parts/RecentlyOpened/RecentlyOpened.js +3 -7
- package/src/parts/RequiresSocket/RequiresSocket.js +1 -0
- package/src/parts/RipGrep/RipGrep.js +1 -1
- package/src/parts/SearchFile/SearchFile.js +4 -9
- package/src/parts/Socket/Socket.js +2 -7
- package/src/parts/Terminal/Terminal.ipc.js +4 -41
- package/src/parts/Terminal/Terminal.js +29 -25
- package/src/parts/TextSearch/TextSearch.js +102 -108
- package/src/parts/ToAbsolutePaths/ToAbsolutePaths.js +9 -0
- package/src/parts/ToTextSearchResult/ToTextSearchResult.js +42 -0
- package/src/parts/Trash/Trash.js +1 -2
- /package/src/parts/{RgPath/RgPath.js → RipGrepPath/RipGrepPath.js} +0 -0
|
@@ -1,784 +1 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"key": "ArrowDown",
|
|
4
|
-
"command": "EditorCompletion.focusNext",
|
|
5
|
-
"when": "focus.editorCompletions"
|
|
6
|
-
},
|
|
7
|
-
{
|
|
8
|
-
"key": "ArrowUp",
|
|
9
|
-
"command": "EditorCompletion.focusPrevious",
|
|
10
|
-
"when": "focus.editorCompletions"
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
"key": "Enter",
|
|
14
|
-
"command": "EditorCompletion.selectCurrent",
|
|
15
|
-
"when": "focus.editorCompletions"
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
"key": "Escape",
|
|
19
|
-
"command": "EditorCompletion.close",
|
|
20
|
-
"when": "focus.editorCompletions"
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"key": "Escape",
|
|
24
|
-
"command": "Viewlet.closeWidget",
|
|
25
|
-
"when": "focus.FindWidget",
|
|
26
|
-
"args": ["FindWidget"]
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
"key": "ctrl+ArrowRight",
|
|
30
|
-
"command": "Editor.cursorWordRight",
|
|
31
|
-
"when": "focus.EditorText"
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
"key": "ctrl+ArrowLeft",
|
|
35
|
-
"command": "Editor.cursorWordLeft",
|
|
36
|
-
"when": "focus.EditorText"
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"key": "alt+Backspace",
|
|
40
|
-
"command": "Editor.deleteWordPartLeft",
|
|
41
|
-
"when": "focus.EditorText"
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"key": "alt+Delete",
|
|
45
|
-
"command": "Editor.deleteWordPartRight",
|
|
46
|
-
"when": "focus.EditorText"
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
"key": "ctrl+Backspace",
|
|
50
|
-
"command": "Editor.deleteWordLeft",
|
|
51
|
-
"when": "focus.EditorText"
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"key": "Enter",
|
|
55
|
-
"command": "EditorRename.finish",
|
|
56
|
-
"when": "focus.editorRename"
|
|
57
|
-
},
|
|
58
|
-
{
|
|
59
|
-
"key": "Escape",
|
|
60
|
-
"command": "EditorRename.abort",
|
|
61
|
-
"when": "focus.editorRename"
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
"key": "ctrl+Delete",
|
|
65
|
-
"command": "Editor.deleteWordRight",
|
|
66
|
-
"when": "focus.EditorText"
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
"key": "ctrl+d",
|
|
70
|
-
"command": "Editor.selectNextOccurrence",
|
|
71
|
-
"when": "focus.EditorText"
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
"key": "Tab",
|
|
75
|
-
"command": "Editor.handleTab",
|
|
76
|
-
"when": "focus.EditorText"
|
|
77
|
-
},
|
|
78
|
-
{
|
|
79
|
-
"key": "shift+Tab",
|
|
80
|
-
"command": "Editor.unindent",
|
|
81
|
-
"when": "focus.EditorText"
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
"key": "ctrl+[",
|
|
85
|
-
"command": "Editor.indentLess",
|
|
86
|
-
"when": "focus.EditorText"
|
|
87
|
-
},
|
|
88
|
-
{
|
|
89
|
-
"key": "ctrl+]",
|
|
90
|
-
"command": "Editor.indentMore",
|
|
91
|
-
"when": "focus.EditorText"
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
"key": "shift+ArrowLeft",
|
|
95
|
-
"command": "Editor.selectCharacterLeft",
|
|
96
|
-
"when": "focus.EditorText"
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
"key": "ctrl+shift+ArrowLeft",
|
|
100
|
-
"command": "Editor.selectWordLeft",
|
|
101
|
-
"when": "focus.EditorText"
|
|
102
|
-
},
|
|
103
|
-
{
|
|
104
|
-
"key": "shift+ArrowRight",
|
|
105
|
-
"command": "Editor.selectCharacterRight",
|
|
106
|
-
"when": "focus.EditorText"
|
|
107
|
-
},
|
|
108
|
-
{
|
|
109
|
-
"key": "ctrl+shift+ArrowRight",
|
|
110
|
-
"command": "Editor.selectWordRight",
|
|
111
|
-
"when": "focus.EditorText"
|
|
112
|
-
},
|
|
113
|
-
{
|
|
114
|
-
"key": "ctrl+l",
|
|
115
|
-
"command": "Editor.selectLine",
|
|
116
|
-
"when": "focus.EditorText"
|
|
117
|
-
},
|
|
118
|
-
{
|
|
119
|
-
"key": "ctrl+shift+Backspace",
|
|
120
|
-
"command": "Editor.deleteAllLeft",
|
|
121
|
-
"when": "focus.EditorText"
|
|
122
|
-
},
|
|
123
|
-
{
|
|
124
|
-
"key": "ctrl+shift+Delete",
|
|
125
|
-
"command": "Editor.deleteAllRight",
|
|
126
|
-
"when": "focus.EditorText"
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
"key": "ctrl+s",
|
|
130
|
-
"command": "Main.save"
|
|
131
|
-
},
|
|
132
|
-
{
|
|
133
|
-
"key": "ctrl+b",
|
|
134
|
-
"command": "Layout.toggleSideBar"
|
|
135
|
-
},
|
|
136
|
-
{
|
|
137
|
-
"key": "ctrl+m",
|
|
138
|
-
"command": "Layout.toggleActivityBar"
|
|
139
|
-
},
|
|
140
|
-
{
|
|
141
|
-
"key": "ctrl+`",
|
|
142
|
-
"command": "Layout.togglePanel",
|
|
143
|
-
"args": ["Terminal"]
|
|
144
|
-
},
|
|
145
|
-
{
|
|
146
|
-
"key": "ctrl+shift+m",
|
|
147
|
-
"command": "ViewService.toggleView",
|
|
148
|
-
"args": ["Output"]
|
|
149
|
-
},
|
|
150
|
-
{
|
|
151
|
-
"key": "ctrl+Enter",
|
|
152
|
-
"command": "Source Control.acceptInput",
|
|
153
|
-
"when": "focus.sourceControlInput"
|
|
154
|
-
},
|
|
155
|
-
{
|
|
156
|
-
"key": "ctrl+n",
|
|
157
|
-
"command": "Explorer.newFile"
|
|
158
|
-
},
|
|
159
|
-
{
|
|
160
|
-
"key": "ctrl+p",
|
|
161
|
-
"command": "Viewlet.openWidget",
|
|
162
|
-
"args": ["QuickPick", "file"]
|
|
163
|
-
},
|
|
164
|
-
{
|
|
165
|
-
"key": "ctrl+shift+p",
|
|
166
|
-
"command": "Viewlet.openWidget",
|
|
167
|
-
"args": ["QuickPick", "everything"]
|
|
168
|
-
},
|
|
169
|
-
{
|
|
170
|
-
"key": "F1",
|
|
171
|
-
"command": "Viewlet.openWidget",
|
|
172
|
-
"args": ["QuickPick", "everything"]
|
|
173
|
-
},
|
|
174
|
-
{
|
|
175
|
-
"key": "Escape",
|
|
176
|
-
"command": "Viewlet.closeWidget",
|
|
177
|
-
"args": ["QuickPick"],
|
|
178
|
-
"when": "focus.quickPickInput"
|
|
179
|
-
},
|
|
180
|
-
{
|
|
181
|
-
"key": "ArrowUp",
|
|
182
|
-
"command": "QuickPick.focusPrevious",
|
|
183
|
-
"when": "focus.quickPickInput"
|
|
184
|
-
},
|
|
185
|
-
{
|
|
186
|
-
"key": "ArrowDown",
|
|
187
|
-
"command": "QuickPick.focusNext",
|
|
188
|
-
"when": "focus.quickPickInput"
|
|
189
|
-
},
|
|
190
|
-
{
|
|
191
|
-
"key": "PageUp",
|
|
192
|
-
"command": "QuickPick.focusFirst",
|
|
193
|
-
"when": "focus.quickPickInput"
|
|
194
|
-
},
|
|
195
|
-
{
|
|
196
|
-
"key": "PageDown",
|
|
197
|
-
"command": "QuickPick.focusLast",
|
|
198
|
-
"when": "focus.quickPickInput"
|
|
199
|
-
},
|
|
200
|
-
{
|
|
201
|
-
"key": "Enter",
|
|
202
|
-
"command": "QuickPick.selectCurrentIndex",
|
|
203
|
-
"when": "focus.quickPickInput"
|
|
204
|
-
},
|
|
205
|
-
{
|
|
206
|
-
"key": "ctrl+shift+x",
|
|
207
|
-
"command": "Focus.set",
|
|
208
|
-
"args": ["Extensions"]
|
|
209
|
-
},
|
|
210
|
-
{
|
|
211
|
-
"key": "ctrl+shift+g",
|
|
212
|
-
"command": "Focus.set",
|
|
213
|
-
"args": ["Source Control"]
|
|
214
|
-
},
|
|
215
|
-
{
|
|
216
|
-
"key": "ctrl+shift+e",
|
|
217
|
-
"command": "Focus.set",
|
|
218
|
-
"args": ["Explorer"]
|
|
219
|
-
},
|
|
220
|
-
{
|
|
221
|
-
"key": "ctrl+shift+f",
|
|
222
|
-
"command": "Focus.set",
|
|
223
|
-
"args": ["Search"]
|
|
224
|
-
},
|
|
225
|
-
{
|
|
226
|
-
"key": "ctrl+shift+Y",
|
|
227
|
-
"command": "Focus.set",
|
|
228
|
-
"args": ["Debug Console"]
|
|
229
|
-
},
|
|
230
|
-
{
|
|
231
|
-
"key": "ctrl+shift+m",
|
|
232
|
-
"command": "Focus.set",
|
|
233
|
-
"args": ["Problems"]
|
|
234
|
-
},
|
|
235
|
-
{
|
|
236
|
-
"key": "ArrowRight",
|
|
237
|
-
"command": "Explorer.handleArrowRight",
|
|
238
|
-
"when": "focus.Explorer"
|
|
239
|
-
},
|
|
240
|
-
{
|
|
241
|
-
"key": "ArrowLeft",
|
|
242
|
-
"command": "Explorer.handleArrowLeft",
|
|
243
|
-
"when": "focus.Explorer"
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
"key": "Home",
|
|
247
|
-
"command": "Explorer.focusFirst",
|
|
248
|
-
"when": "focus.Explorer"
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
"key": "End",
|
|
252
|
-
"command": "Explorer.focusLast",
|
|
253
|
-
"when": "focus.Explorer"
|
|
254
|
-
},
|
|
255
|
-
{
|
|
256
|
-
"key": "ArrowUp",
|
|
257
|
-
"command": "Explorer.focusPrevious",
|
|
258
|
-
"when": "focus.Explorer"
|
|
259
|
-
},
|
|
260
|
-
{
|
|
261
|
-
"key": "ArrowDown",
|
|
262
|
-
"command": "Explorer.focusNext",
|
|
263
|
-
"when": "focus.Explorer"
|
|
264
|
-
},
|
|
265
|
-
{
|
|
266
|
-
"key": "shift+*",
|
|
267
|
-
"command": "Explorer.expandAll",
|
|
268
|
-
"when": "focus.Explorer"
|
|
269
|
-
},
|
|
270
|
-
{
|
|
271
|
-
"key": "alt+ArrowRight",
|
|
272
|
-
"command": "Explorer.expandRecursively",
|
|
273
|
-
"when": "focus.Explorer"
|
|
274
|
-
},
|
|
275
|
-
{
|
|
276
|
-
"key": "ctrl+ArrowLeft",
|
|
277
|
-
"command": "Explorer.collapseAll",
|
|
278
|
-
"when": "focus.Explorer"
|
|
279
|
-
},
|
|
280
|
-
{
|
|
281
|
-
"key": "Home",
|
|
282
|
-
"command": "Extensions.focusFirst",
|
|
283
|
-
"when": "focus.Extensions"
|
|
284
|
-
},
|
|
285
|
-
{
|
|
286
|
-
"key": "End",
|
|
287
|
-
"command": "Extensions.focusLast",
|
|
288
|
-
"when": "focus.Extensions"
|
|
289
|
-
},
|
|
290
|
-
{
|
|
291
|
-
"key": "PageUp",
|
|
292
|
-
"command": "Extensions.focusPreviousPage",
|
|
293
|
-
"when": "focus.Extensions"
|
|
294
|
-
},
|
|
295
|
-
{
|
|
296
|
-
"key": "PageDown",
|
|
297
|
-
"command": "Extensions.focusNextPage",
|
|
298
|
-
"when": "focus.Extensions"
|
|
299
|
-
},
|
|
300
|
-
{
|
|
301
|
-
"key": "ArrowUp",
|
|
302
|
-
"command": "Extensions.focusPrevious",
|
|
303
|
-
"when": "focus.Extensions"
|
|
304
|
-
},
|
|
305
|
-
{
|
|
306
|
-
"key": "ArrowDown",
|
|
307
|
-
"command": "Extensions.focusNext",
|
|
308
|
-
"when": "focus.Extensions"
|
|
309
|
-
},
|
|
310
|
-
{
|
|
311
|
-
"key": "Space",
|
|
312
|
-
"command": "Extensions.handleClickCurrentButKeepFocus",
|
|
313
|
-
"when": "focus.Extensions"
|
|
314
|
-
},
|
|
315
|
-
{
|
|
316
|
-
"key": "Enter",
|
|
317
|
-
"command": "Extensions.handleClickCurrent",
|
|
318
|
-
"when": "focus.Extensions"
|
|
319
|
-
},
|
|
320
|
-
{
|
|
321
|
-
"key": "ctrl+Space",
|
|
322
|
-
"command": "Extensions.toggleSuggest",
|
|
323
|
-
"when": "focus.Extensions"
|
|
324
|
-
},
|
|
325
|
-
{
|
|
326
|
-
"key": "F2",
|
|
327
|
-
"command": "Explorer.rename",
|
|
328
|
-
"when": "focus.Explorer"
|
|
329
|
-
},
|
|
330
|
-
{
|
|
331
|
-
"key": "Escape",
|
|
332
|
-
"command": "Explorer.cancelEdit",
|
|
333
|
-
"when": "focus.ExplorerEditBox"
|
|
334
|
-
},
|
|
335
|
-
{
|
|
336
|
-
"key": "Enter",
|
|
337
|
-
"command": "Explorer.acceptEdit",
|
|
338
|
-
"when": "focus.ExplorerEditBox"
|
|
339
|
-
},
|
|
340
|
-
{
|
|
341
|
-
"key": "Delete",
|
|
342
|
-
"command": "Explorer.removeDirent",
|
|
343
|
-
"when": "focus.Explorer"
|
|
344
|
-
},
|
|
345
|
-
{
|
|
346
|
-
"key": "Escape",
|
|
347
|
-
"command": "Explorer.focusNone",
|
|
348
|
-
"when": "focus.Explorer"
|
|
349
|
-
},
|
|
350
|
-
{
|
|
351
|
-
"key": "Space",
|
|
352
|
-
"command": "Explorer.handleClickCurrentButKeepFocus",
|
|
353
|
-
"when": "focus.Explorer"
|
|
354
|
-
},
|
|
355
|
-
{
|
|
356
|
-
"key": "Enter",
|
|
357
|
-
"command": "Explorer.handleClickCurrent",
|
|
358
|
-
"when": "focus.Explorer"
|
|
359
|
-
},
|
|
360
|
-
{
|
|
361
|
-
"key": "Escape",
|
|
362
|
-
"command": "Editor.cancelSelection",
|
|
363
|
-
"when": "focus.EditorText"
|
|
364
|
-
},
|
|
365
|
-
{
|
|
366
|
-
"key": "ctrl+z",
|
|
367
|
-
"command": "Editor.undo",
|
|
368
|
-
"when": "focus.EditorText"
|
|
369
|
-
},
|
|
370
|
-
{
|
|
371
|
-
"key": "ctrl+,",
|
|
372
|
-
"command": "Preferences.openSettingsJson"
|
|
373
|
-
},
|
|
374
|
-
{
|
|
375
|
-
"key": "ArrowLeft",
|
|
376
|
-
"command": "Editor.cursorLeft",
|
|
377
|
-
"when": "focus.EditorText"
|
|
378
|
-
},
|
|
379
|
-
{
|
|
380
|
-
"key": "ArrowRight",
|
|
381
|
-
"command": "Editor.cursorRight",
|
|
382
|
-
"when": "focus.EditorText"
|
|
383
|
-
},
|
|
384
|
-
{
|
|
385
|
-
"key": "ArrowUp",
|
|
386
|
-
"command": "Editor.cursorUp",
|
|
387
|
-
"when": "focus.EditorText"
|
|
388
|
-
},
|
|
389
|
-
{
|
|
390
|
-
"key": "ArrowDown",
|
|
391
|
-
"command": "Editor.cursorDown",
|
|
392
|
-
"when": "focus.EditorText"
|
|
393
|
-
},
|
|
394
|
-
{
|
|
395
|
-
"key": "Backspace",
|
|
396
|
-
"command": "Editor.deleteLeft",
|
|
397
|
-
"when": "focus.EditorText"
|
|
398
|
-
},
|
|
399
|
-
{
|
|
400
|
-
"key": "Delete",
|
|
401
|
-
"command": "Editor.deleteRight",
|
|
402
|
-
"when": "focus.EditorText"
|
|
403
|
-
},
|
|
404
|
-
{
|
|
405
|
-
"key": "Enter",
|
|
406
|
-
"command": "Editor.insertLineBreak",
|
|
407
|
-
"when": "focus.EditorText"
|
|
408
|
-
},
|
|
409
|
-
{
|
|
410
|
-
"key": "ctrl+shift+d",
|
|
411
|
-
"command": "Editor.copyLineDown",
|
|
412
|
-
"when": "focus.EditorText"
|
|
413
|
-
},
|
|
414
|
-
{
|
|
415
|
-
"key": "ctrl+shift+d",
|
|
416
|
-
"command": "Focus.set",
|
|
417
|
-
"args": ["Run and Debug"]
|
|
418
|
-
},
|
|
419
|
-
{
|
|
420
|
-
"key": "ctrl+shift+ArrowDown",
|
|
421
|
-
"command": "Editor.moveLineDown",
|
|
422
|
-
"when": "focus.EditorText"
|
|
423
|
-
},
|
|
424
|
-
{
|
|
425
|
-
"key": "ctrl+shift+ArrowUp",
|
|
426
|
-
"command": "Editor.moveLineUp",
|
|
427
|
-
"when": "focus.EditorText"
|
|
428
|
-
},
|
|
429
|
-
{
|
|
430
|
-
"key": "ctrl+Space",
|
|
431
|
-
"command": "Editor.openCompletion",
|
|
432
|
-
"when": "focus.EditorText"
|
|
433
|
-
},
|
|
434
|
-
{
|
|
435
|
-
"key": "F2",
|
|
436
|
-
"command": "EditorRename.open",
|
|
437
|
-
"when": "focus.EditorText"
|
|
438
|
-
},
|
|
439
|
-
{
|
|
440
|
-
"key": "Home",
|
|
441
|
-
"command": "Editor.cursorHome",
|
|
442
|
-
"when": "focus.EditorText"
|
|
443
|
-
},
|
|
444
|
-
{
|
|
445
|
-
"key": "End",
|
|
446
|
-
"command": "Editor.cursorEnd",
|
|
447
|
-
"when": "focus.EditorText"
|
|
448
|
-
},
|
|
449
|
-
{
|
|
450
|
-
"key": "ctrl+/",
|
|
451
|
-
"command": "Editor.toggleComment",
|
|
452
|
-
"when": "focus.EditorText"
|
|
453
|
-
},
|
|
454
|
-
{
|
|
455
|
-
"key": "ArrowDown",
|
|
456
|
-
"command": "ActivityBar.focusNext",
|
|
457
|
-
"when": "focus.activityBar"
|
|
458
|
-
},
|
|
459
|
-
{
|
|
460
|
-
"key": "ArrowUp",
|
|
461
|
-
"command": "ActivityBar.focusPrevious",
|
|
462
|
-
"when": "focus.activityBar"
|
|
463
|
-
},
|
|
464
|
-
{
|
|
465
|
-
"key": "Home",
|
|
466
|
-
"command": "ActivityBar.focusFirst",
|
|
467
|
-
"when": "focus.activityBar"
|
|
468
|
-
},
|
|
469
|
-
{
|
|
470
|
-
"key": "PageUp",
|
|
471
|
-
"command": "ActivityBar.focusFirst",
|
|
472
|
-
"when": "focus.activityBar"
|
|
473
|
-
},
|
|
474
|
-
{
|
|
475
|
-
"key": "PageDown",
|
|
476
|
-
"command": "ActivityBar.focusLast",
|
|
477
|
-
"when": "focus.activityBar"
|
|
478
|
-
},
|
|
479
|
-
{
|
|
480
|
-
"key": "End",
|
|
481
|
-
"command": "ActivityBar.focusLast",
|
|
482
|
-
"when": "focus.activityBar"
|
|
483
|
-
},
|
|
484
|
-
{
|
|
485
|
-
"key": "Space",
|
|
486
|
-
"command": "ActivityBar.selectCurrent",
|
|
487
|
-
"when": "focus.activityBar"
|
|
488
|
-
},
|
|
489
|
-
{
|
|
490
|
-
"key": "Enter",
|
|
491
|
-
"command": "ActivityBar.selectCurrent",
|
|
492
|
-
"when": "focus.activityBar"
|
|
493
|
-
},
|
|
494
|
-
{
|
|
495
|
-
"key": "Home",
|
|
496
|
-
"command": "ActivityBar.focusFirst",
|
|
497
|
-
"when": "focus.activityBar"
|
|
498
|
-
},
|
|
499
|
-
{
|
|
500
|
-
"key": "End",
|
|
501
|
-
"command": "ActivityBar.focusLast",
|
|
502
|
-
"when": "focus.activityBar"
|
|
503
|
-
},
|
|
504
|
-
{
|
|
505
|
-
"key": "ctrl+c",
|
|
506
|
-
"command": "Editor.copy",
|
|
507
|
-
"when": "focus.EditorText"
|
|
508
|
-
},
|
|
509
|
-
{
|
|
510
|
-
"key": "ctrl+a",
|
|
511
|
-
"command": "Editor.selectAll",
|
|
512
|
-
"when": "focus.EditorText"
|
|
513
|
-
},
|
|
514
|
-
{
|
|
515
|
-
"key": "alt+ArrowLeft",
|
|
516
|
-
"command": "Editor.cursorWordPartLeft",
|
|
517
|
-
"when": "focus.EditorText"
|
|
518
|
-
},
|
|
519
|
-
{
|
|
520
|
-
"key": "alt+ArrowRight",
|
|
521
|
-
"command": "Editor.cursorWordPartRight",
|
|
522
|
-
"when": "focus.EditorText"
|
|
523
|
-
},
|
|
524
|
-
{
|
|
525
|
-
"key": "ctrl+w",
|
|
526
|
-
"command": "Main.closeActiveEditor"
|
|
527
|
-
},
|
|
528
|
-
{
|
|
529
|
-
"key": "ctrl+shift+i",
|
|
530
|
-
"command": "Developer.toggleDeveloperTools",
|
|
531
|
-
"when": "browser.electron"
|
|
532
|
-
},
|
|
533
|
-
{
|
|
534
|
-
"key": "F6",
|
|
535
|
-
"command": "Navigation.focusNextPart"
|
|
536
|
-
},
|
|
537
|
-
{
|
|
538
|
-
"key": "shift+F6",
|
|
539
|
-
"command": "Navigation.focusPreviousPart"
|
|
540
|
-
},
|
|
541
|
-
{
|
|
542
|
-
"key": "alt+F3",
|
|
543
|
-
"command": "Editor.selectAllOccurrences",
|
|
544
|
-
"when": "focus.EditorText"
|
|
545
|
-
},
|
|
546
|
-
{
|
|
547
|
-
"key": "ctrl+g",
|
|
548
|
-
"command": "QuickPick.openGoToLine"
|
|
549
|
-
},
|
|
550
|
-
{
|
|
551
|
-
"key": "ctrl+shift+Space",
|
|
552
|
-
"command": "Editor.selectInsideString",
|
|
553
|
-
"when": "focus.editor"
|
|
554
|
-
},
|
|
555
|
-
{
|
|
556
|
-
"key": "ctrl+Tab",
|
|
557
|
-
"command": "Main.focusNext"
|
|
558
|
-
},
|
|
559
|
-
{
|
|
560
|
-
"key": "ctrl+shift+Tab",
|
|
561
|
-
"command": "Main.focusPrevious"
|
|
562
|
-
},
|
|
563
|
-
{
|
|
564
|
-
"key": "Escape",
|
|
565
|
-
"command": "dialog.close",
|
|
566
|
-
"when": "focus.dialog"
|
|
567
|
-
},
|
|
568
|
-
{
|
|
569
|
-
"key": "ctrl+v",
|
|
570
|
-
"command": "Explorer.handlePaste",
|
|
571
|
-
"when": "focus.Explorer"
|
|
572
|
-
},
|
|
573
|
-
{
|
|
574
|
-
"key": "ctrl+c",
|
|
575
|
-
"command": "Explorer.handleCopy",
|
|
576
|
-
"when": "focus.Explorer"
|
|
577
|
-
},
|
|
578
|
-
{
|
|
579
|
-
"key": "ArrowDown",
|
|
580
|
-
"command": "Menu.focusNext",
|
|
581
|
-
"when": "focus.menu"
|
|
582
|
-
},
|
|
583
|
-
{
|
|
584
|
-
"key": "ArrowUp",
|
|
585
|
-
"command": "Menu.focusPrevious",
|
|
586
|
-
"when": "focus.menu"
|
|
587
|
-
},
|
|
588
|
-
{
|
|
589
|
-
"key": "Enter",
|
|
590
|
-
"command": "Menu.selectCurrent",
|
|
591
|
-
"when": "focus.menu"
|
|
592
|
-
},
|
|
593
|
-
{
|
|
594
|
-
"key": "Space",
|
|
595
|
-
"command": "Menu.selectCurrent",
|
|
596
|
-
"when": "focus.menu"
|
|
597
|
-
},
|
|
598
|
-
{
|
|
599
|
-
"key": "Home",
|
|
600
|
-
"command": "Menu.focusFirst",
|
|
601
|
-
"when": "focus.menu"
|
|
602
|
-
},
|
|
603
|
-
{
|
|
604
|
-
"key": "End",
|
|
605
|
-
"command": "Menu.focusLast",
|
|
606
|
-
"when": "focus.menu"
|
|
607
|
-
},
|
|
608
|
-
{
|
|
609
|
-
"key": "Escape",
|
|
610
|
-
"command": "Menu.hide",
|
|
611
|
-
"when": "focus.menu"
|
|
612
|
-
},
|
|
613
|
-
{
|
|
614
|
-
"key": "ctrl+shift+n",
|
|
615
|
-
"command": "Workbench.newWindow",
|
|
616
|
-
"when": "browser.electron"
|
|
617
|
-
},
|
|
618
|
-
{
|
|
619
|
-
"key": "Tab",
|
|
620
|
-
"command": "Menu.noop",
|
|
621
|
-
"when": "focus.menu"
|
|
622
|
-
},
|
|
623
|
-
{
|
|
624
|
-
"key": "Shift+Tab",
|
|
625
|
-
"command": "Menu.noop",
|
|
626
|
-
"when": "focus.menu"
|
|
627
|
-
},
|
|
628
|
-
{
|
|
629
|
-
"key": "ctrl+shift+r",
|
|
630
|
-
"command": "Viewlet.openWidget",
|
|
631
|
-
"args": ["QuickPick", "recent"]
|
|
632
|
-
},
|
|
633
|
-
{
|
|
634
|
-
"key": "ArrowDown",
|
|
635
|
-
"command": "Locations.focusNext",
|
|
636
|
-
"when": "focus.locationList"
|
|
637
|
-
},
|
|
638
|
-
{
|
|
639
|
-
"key": "ArrowUp",
|
|
640
|
-
"command": "Locations.focusPrevious",
|
|
641
|
-
"when": "focus.locationList"
|
|
642
|
-
},
|
|
643
|
-
{
|
|
644
|
-
"key": "Home",
|
|
645
|
-
"command": "Locations.focusFirst",
|
|
646
|
-
"when": "focus.locationList"
|
|
647
|
-
},
|
|
648
|
-
{
|
|
649
|
-
"key": "End",
|
|
650
|
-
"command": "Locations.focusLast",
|
|
651
|
-
"when": "focus.locationList"
|
|
652
|
-
},
|
|
653
|
-
{
|
|
654
|
-
"key": "Enter",
|
|
655
|
-
"command": "Locations.selectCurrent",
|
|
656
|
-
"when": "focus.locationList"
|
|
657
|
-
},
|
|
658
|
-
{
|
|
659
|
-
"key": "ctrl+0",
|
|
660
|
-
"command": "SideBar.focus"
|
|
661
|
-
},
|
|
662
|
-
{
|
|
663
|
-
"key": "ctrl+1",
|
|
664
|
-
"command": "Main.focus"
|
|
665
|
-
},
|
|
666
|
-
{
|
|
667
|
-
"key": "shift+ArrowUp",
|
|
668
|
-
"command": "Editor.selectUp"
|
|
669
|
-
},
|
|
670
|
-
{
|
|
671
|
-
"key": "shift+ArrowDown",
|
|
672
|
-
"command": "Editor.selectDown"
|
|
673
|
-
},
|
|
674
|
-
{
|
|
675
|
-
"key": "ctrl+f",
|
|
676
|
-
"command": "Editor.openFind"
|
|
677
|
-
},
|
|
678
|
-
{
|
|
679
|
-
"key": "Enter",
|
|
680
|
-
"command": "FindWidget.focusNext",
|
|
681
|
-
"when": "focus.FindWidget"
|
|
682
|
-
},
|
|
683
|
-
{
|
|
684
|
-
"key": "shift+F4",
|
|
685
|
-
"command": "FindWidget.focusPrevious",
|
|
686
|
-
"when": "focus.FindWidget"
|
|
687
|
-
},
|
|
688
|
-
{
|
|
689
|
-
"key": "F4",
|
|
690
|
-
"command": "FindWidget.focusNext",
|
|
691
|
-
"when": "focus.FindWidget"
|
|
692
|
-
},
|
|
693
|
-
{
|
|
694
|
-
"key": "ctrl+=",
|
|
695
|
-
"command": "Window.zoomIn"
|
|
696
|
-
},
|
|
697
|
-
{
|
|
698
|
-
"key": "ctrl+-",
|
|
699
|
-
"command": "Window.zoomOut"
|
|
700
|
-
},
|
|
701
|
-
{
|
|
702
|
-
"key": "ArrowDown",
|
|
703
|
-
"command": "TitleBarMenuBar.handleKeyArrowDown",
|
|
704
|
-
"when": "focus.TitleBarMenuBar"
|
|
705
|
-
},
|
|
706
|
-
{
|
|
707
|
-
"key": "ArrowUp",
|
|
708
|
-
"command": "TitleBarMenuBar.handleKeyArrowUp",
|
|
709
|
-
"when": "focus.TitleBarMenuBar"
|
|
710
|
-
},
|
|
711
|
-
{
|
|
712
|
-
"key": "ArrowRight",
|
|
713
|
-
"command": "TitleBarMenuBar.handleKeyArrowRight",
|
|
714
|
-
"when": "focus.TitleBarMenuBar"
|
|
715
|
-
},
|
|
716
|
-
{
|
|
717
|
-
"key": "ArrowLeft",
|
|
718
|
-
"command": "TitleBarMenuBar.handleKeyArrowLeft",
|
|
719
|
-
"when": "focus.TitleBarMenuBar"
|
|
720
|
-
},
|
|
721
|
-
{
|
|
722
|
-
"key": "Space",
|
|
723
|
-
"command": "TitleBarMenuBar.handleKeySpace",
|
|
724
|
-
"when": "focus.TitleBarMenuBar"
|
|
725
|
-
},
|
|
726
|
-
{
|
|
727
|
-
"key": "Home",
|
|
728
|
-
"command": "TitleBarMenuBar.handleKeyHome",
|
|
729
|
-
"when": "focus.TitleBarMenuBar"
|
|
730
|
-
},
|
|
731
|
-
{
|
|
732
|
-
"key": "End",
|
|
733
|
-
"command": "TitleBarMenuBar.handleKeyEnd",
|
|
734
|
-
"when": "focus.TitleBarMenuBar"
|
|
735
|
-
},
|
|
736
|
-
{
|
|
737
|
-
"key": "Escape",
|
|
738
|
-
"command": "TitleBarMenuBar.handleKeyEscape",
|
|
739
|
-
"when": "focus.TitleBarMenuBar"
|
|
740
|
-
},
|
|
741
|
-
{
|
|
742
|
-
"key": "Enter",
|
|
743
|
-
"command": "SimpleBrowser.go",
|
|
744
|
-
"when": "focus.SimpleBrowserInput"
|
|
745
|
-
},
|
|
746
|
-
{
|
|
747
|
-
"key": "ctrl+r",
|
|
748
|
-
"command": "Window.reload"
|
|
749
|
-
},
|
|
750
|
-
{
|
|
751
|
-
"key": "ctrl+\\",
|
|
752
|
-
"command": "Run And Debug.togglePause"
|
|
753
|
-
},
|
|
754
|
-
{
|
|
755
|
-
"key": "Enter",
|
|
756
|
-
"command": "Run And Debug.handleEvaluate",
|
|
757
|
-
"when": "focus.DebugInput"
|
|
758
|
-
},
|
|
759
|
-
{
|
|
760
|
-
"key": "ArrowLeft",
|
|
761
|
-
"command": "EditorImage.moveLeft",
|
|
762
|
-
"when": "focus.EditorImage"
|
|
763
|
-
},
|
|
764
|
-
{
|
|
765
|
-
"key": "ArrowRight",
|
|
766
|
-
"command": "EditorImage.moveRight",
|
|
767
|
-
"when": "focus.EditorImage"
|
|
768
|
-
},
|
|
769
|
-
{
|
|
770
|
-
"key": "ArrowUp",
|
|
771
|
-
"command": "EditorImage.moveUp",
|
|
772
|
-
"when": "focus.EditorImage"
|
|
773
|
-
},
|
|
774
|
-
{
|
|
775
|
-
"key": "ArrowDown",
|
|
776
|
-
"command": "EditorImage.moveDown",
|
|
777
|
-
"when": "focus.EditorImage"
|
|
778
|
-
},
|
|
779
|
-
{
|
|
780
|
-
"key": "ctrl+j",
|
|
781
|
-
"command": "Viewlet.openWidget",
|
|
782
|
-
"args": ["ColorPicker"]
|
|
783
|
-
}
|
|
784
|
-
]
|
|
1
|
+
[]
|