Add New Window to File menu

Closes #626
This commit is contained in:
Kevin Sawicki 2013-07-11 20:22:43 -07:00
parent 94e2dbbc2c
commit 16095c8086
2 changed files with 3 additions and 0 deletions

View File

@ -1,3 +1,5 @@
* Fixed: cmd-n now works when no windows are open
* Fixed: Error selecting a grammar for an untitled editor
* Added: j/k now can be used to navigate the tree view and archive editor

View File

@ -124,6 +124,7 @@ class AtomApplication
menus.push
label: 'File'
submenu: [
{ label: 'New Window', accelerator: 'Command+N', click: => @openPath() }
{ label: 'Open...', accelerator: 'Command+O', click: => @promptForPath() }
{ label: 'Open In Dev Mode...', accelerator: 'Command+Shift+O', click: => @promptForPath(devMode: true) }
]