From 6dc2db25da9a58fdbd7e55e159c858264460fa72 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Fri, 14 Jun 2013 09:28:27 -0700 Subject: [PATCH] Add Zoom to Window menu --- src/atom-application.coffee | 1 + 1 file changed, 1 insertion(+) diff --git a/src/atom-application.coffee b/src/atom-application.coffee index 25f3a5d8a..d5ab72786 100644 --- a/src/atom-application.coffee +++ b/src/atom-application.coffee @@ -146,6 +146,7 @@ class AtomApplication label: 'Window' submenu: [ { label: 'Minimize', accelerator: 'Command+M', selector: 'performMiniaturize:' } + { label: 'Zoom', accelerator: 'Alt+Command+MacCtrl+M', selector: 'zoom:' } { label: 'Close', accelerator: 'Command+W', selector: 'performClose:' } { type: 'separator' } { label: 'Bring All to Front', selector: 'arrangeInFront:' }