Skip to content

Commit

Permalink
Fix code action menu secondary accept bindings (microsoft#158956)
Browse files Browse the repository at this point in the history
* Allos ctrl+. to accept current code aciton

Fixes microsoft#7512

* Remove shift+tab binding

Fixes microsoft#158857
  • Loading branch information
mjbvz authored Aug 24, 2022
1 parent c2741a0 commit e7f76d7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ registerEditorCommand(new CodeActionContribution({
kbOpts: {
weight: weight + 100000,
primary: KeyCode.Enter,
secondary: [KeyMod.Shift | KeyCode.Tab],
secondary: [KeyMod.CtrlCmd | KeyCode.Period],
}
}));

Expand Down

0 comments on commit e7f76d7

Please sign in to comment.