From d122d18a3434eab5363d45289f3f384e92c57fa3 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 7 Aug 2013 13:39:45 -0700 Subject: [PATCH] Update New Window menu keybinding to cmd-shift-n --- src/atom-application.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/atom-application.coffee b/src/atom-application.coffee index 0dd01bc2a..8b420d322 100644 --- a/src/atom-application.coffee +++ b/src/atom-application.coffee @@ -124,7 +124,7 @@ class AtomApplication menus.push label: 'File' submenu: [ - { label: 'New Window', accelerator: 'Command+N', click: => @openPath() } + { label: 'New Window', accelerator: 'Command+Shift+N', click: => @openPath() } { label: 'Open...', accelerator: 'Command+O', click: => @promptForPath() } { label: 'Open In Dev Mode...', accelerator: 'Command+Shift+O', click: => @promptForPath(devMode: true) } ]