@lvce-editor/explorer-view 1.28.0 → 1.29.0
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.
|
@@ -2248,13 +2248,13 @@ const menuEntryOpenInIntegratedTerminal = {
|
|
|
2248
2248
|
id: 'openInIntegratedTerminal',
|
|
2249
2249
|
label: openInIntegratedTerminal(),
|
|
2250
2250
|
flags: None$3,
|
|
2251
|
-
command: /* TODO
|
|
2251
|
+
command: /* TODO */'-1'
|
|
2252
2252
|
};
|
|
2253
2253
|
const menuEntryCut = {
|
|
2254
2254
|
id: 'cut',
|
|
2255
2255
|
label: cut(),
|
|
2256
2256
|
flags: RestoreFocus,
|
|
2257
|
-
command: /* TODO
|
|
2257
|
+
command: /* TODO */'-1'
|
|
2258
2258
|
};
|
|
2259
2259
|
const menuEntryCopy = {
|
|
2260
2260
|
id: 'copy',
|
|
@@ -4100,12 +4100,7 @@ const commandMap = {
|
|
|
4100
4100
|
'Explorer.focusLast': wrapCommand(focusLast),
|
|
4101
4101
|
'Explorer.focusNext': wrapCommand(focusNext),
|
|
4102
4102
|
'Explorer.focusPrevious': wrapCommand(focusPrevious),
|
|
4103
|
-
'Explorer.getActions': wrapCommand(getActions),
|
|
4104
4103
|
'Explorer.getCommandIds': getCommandIds,
|
|
4105
|
-
'Explorer.getKeyBindings': wrapCommand(getKeyBindings),
|
|
4106
|
-
'Explorer.getMenuEntries': wrapCommand(getMenuEntries),
|
|
4107
|
-
'Explorer.getVirtualDom': wrapCommand(getExplorerVirtualDom),
|
|
4108
|
-
'Explorer.getVisibleItems': wrapCommand(getVisibleExplorerItems),
|
|
4109
4104
|
'Explorer.handleArrowLeft': wrapCommand(handleArrowLeft),
|
|
4110
4105
|
'Explorer.handleArrowRight': wrapCommand(handleArrowRight),
|
|
4111
4106
|
'Explorer.handleBlur': wrapCommand(handleBlur),
|
|
@@ -4133,17 +4128,22 @@ const commandMap = {
|
|
|
4133
4128
|
'Explorer.restoreState': wrapCommand(restoreState),
|
|
4134
4129
|
'Explorer.revealItem': wrapCommand(revealItem),
|
|
4135
4130
|
'Explorer.setDeltaY': wrapCommand(setDeltaY),
|
|
4136
|
-
'Explorer.terminate': wrapCommand(terminate),
|
|
4137
4131
|
'Explorer.updateEditingValue': wrapCommand(updateEditingValue),
|
|
4138
4132
|
'Explorer.updateIcons': wrapCommand(updateIcons),
|
|
4139
4133
|
// not wrapped
|
|
4140
4134
|
'Explorer.create': create,
|
|
4141
4135
|
'Explorer.diff2': diff2,
|
|
4136
|
+
'Explorer.getKeyBindings': getKeyBindings,
|
|
4137
|
+
'Explorer.getMenuEntries': getMenuEntries,
|
|
4142
4138
|
'Explorer.render2': render2,
|
|
4143
4139
|
'Explorer.renderActions2': renderActions$1,
|
|
4144
4140
|
'Explorer.renderEventListeners': renderEventListeners,
|
|
4145
4141
|
'Explorer.saveState': saveState,
|
|
4142
|
+
'Explorer.terminate': terminate,
|
|
4146
4143
|
// deprecated
|
|
4144
|
+
'Explorer.getVirtualDom': getExplorerVirtualDom,
|
|
4145
|
+
'Explorer.getVisibleItems': getVisibleExplorerItems,
|
|
4146
|
+
'Explorer.getActions': getActions,
|
|
4147
4147
|
'Explorer.renderActions': renderActions,
|
|
4148
4148
|
'Explorer.render': doRender,
|
|
4149
4149
|
'Explorer.diff': diff
|