mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-22 13:13:08 +01:00
explorer: bring back missing cmd+down command for opening
This commit is contained in:
@@ -261,6 +261,10 @@ export function registerCommands(): void {
|
||||
when: ListFocusContext,
|
||||
primary: KeyCode.Enter,
|
||||
secondary: [KeyMod.CtrlCmd | KeyCode.Enter],
|
||||
mac: {
|
||||
primary: KeyCode.Enter,
|
||||
secondary: [KeyMod.CtrlCmd | KeyCode.Enter, KeyMod.CtrlCmd | KeyCode.DownArrow]
|
||||
},
|
||||
handler: (accessor) => {
|
||||
const listService = accessor.get(IListService);
|
||||
const focused = listService.getFocused();
|
||||
|
||||
Reference in New Issue
Block a user