We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee327ef commit e72e794Copy full SHA for e72e794
arduino-ide-extension/src/browser/contributions/close-sketch.ts
@@ -57,7 +57,7 @@ export class CloseSketch extends SketchContribution {
57
registerKeybindings(registry: KeybindingRegistry): void {
58
registry.registerKeybinding({
59
command: CloseSketch.Commands.CLOSE_SKETCH.id,
60
- keybinding: 'CtrlCmd+W' // TODO: Windows binding?
+ keybinding: 'CtrlCmd+W'
61
});
62
}
63
arduino-ide-extension/src/browser/contributions/quit-app.ts
@@ -29,7 +29,7 @@ export class QuitApp extends Contribution {
29
if (!isOSX) {
30
31
command: QuitApp.Commands.QUIT_APP.id,
32
- keybinding: isWindows ? 'Alt+F4' : 'Ctrl+Q'
+ keybinding: 'CtrlCmd+Q'
33
34
35
0 commit comments