explorer: bring back missing cmd+down command for opening

This commit is contained in:
Benjamin Pasero
2017-03-08 07:13:01 +01:00
parent 5b8dc569f6
commit 2edc95ddd5
@@ -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();