Update New Window menu keybinding to cmd-shift-n

This commit is contained in:
Kevin Sawicki
2013-08-07 13:39:45 -07:00
parent 6fb3dea9cd
commit d122d18a34

View File

@@ -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) }
]