Skip to content

Commit

Permalink
do not use Ctrl+Alt keybindings under windows
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero committed Feb 2, 2017
1 parent 01373f7 commit 22a0e87
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,9 @@ KeybindingsRegistry.registerCommandAndKeybindingRule({
weight: KeybindingsRegistry.WEIGHT.workbenchContrib(),
when: explorerFocusCondition,
primary: KeyMod.CtrlCmd | KeyMod.Alt | KeyCode.KEY_C,
win: {
primary: KeyMod.Shift | KeyMod.Alt | KeyCode.KEY_C
},
handler: copyPathOfFocussedExplorerItem
});

Expand Down

0 comments on commit 22a0e87

Please sign in to comment.