@lvce-editor/title-bar-worker 2.14.0 → 2.15.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.
|
@@ -1300,35 +1300,35 @@ const FocusTitleBarMenuBar = 26;
|
|
|
1300
1300
|
const getKeyBindings$1 = () => {
|
|
1301
1301
|
return [{
|
|
1302
1302
|
key: DownArrow$2,
|
|
1303
|
-
command: '
|
|
1303
|
+
command: 'TitleBar.handleKeyArrowDown',
|
|
1304
1304
|
when: FocusTitleBarMenuBar
|
|
1305
1305
|
}, {
|
|
1306
1306
|
key: UpArrow$2,
|
|
1307
|
-
command: '
|
|
1307
|
+
command: 'TitleBar.handleKeyArrowUp',
|
|
1308
1308
|
when: FocusTitleBarMenuBar
|
|
1309
1309
|
}, {
|
|
1310
1310
|
key: RightArrow$2,
|
|
1311
|
-
command: '
|
|
1311
|
+
command: 'TitleBar.handleKeyArrowRight',
|
|
1312
1312
|
when: FocusTitleBarMenuBar
|
|
1313
1313
|
}, {
|
|
1314
1314
|
key: LeftArrow$2,
|
|
1315
|
-
command: '
|
|
1315
|
+
command: 'TitleBar.handleKeyArrowLeft',
|
|
1316
1316
|
when: FocusTitleBarMenuBar
|
|
1317
1317
|
}, {
|
|
1318
1318
|
key: Space$2,
|
|
1319
|
-
command: '
|
|
1319
|
+
command: 'TitleBar.handleKeySpace',
|
|
1320
1320
|
when: FocusTitleBarMenuBar
|
|
1321
1321
|
}, {
|
|
1322
1322
|
key: Home$2,
|
|
1323
|
-
command: '
|
|
1323
|
+
command: 'TitleBar.handleKeyHome',
|
|
1324
1324
|
when: FocusTitleBarMenuBar
|
|
1325
1325
|
}, {
|
|
1326
1326
|
key: End$2,
|
|
1327
|
-
command: '
|
|
1327
|
+
command: 'TitleBar.handleKeyEnd',
|
|
1328
1328
|
when: FocusTitleBarMenuBar
|
|
1329
1329
|
}, {
|
|
1330
1330
|
key: Escape$2,
|
|
1331
|
-
command: '
|
|
1331
|
+
command: 'TitleBar.handleKeyEscape',
|
|
1332
1332
|
when: FocusTitleBarMenuBar
|
|
1333
1333
|
}];
|
|
1334
1334
|
};
|
|
@@ -4049,6 +4049,7 @@ const commandMap = {
|
|
|
4049
4049
|
'TitleBar.diff2': diff2,
|
|
4050
4050
|
'TitleBar.diff3': diff3,
|
|
4051
4051
|
'TitleBar.focus': wrapCommand(focus),
|
|
4052
|
+
'TitleBar.focusMenuBar': wrapCommand(focus),
|
|
4052
4053
|
'TitleBar.focusFirst': wrapCommand(focusFirst),
|
|
4053
4054
|
'TitleBar.focusIndex': wrapCommand(focusLast),
|
|
4054
4055
|
'TitleBar.focusLast': wrapCommand(focusIndex),
|