2013-10-04 23:28:19 +04:00
|
|
|
'menu': [
|
|
|
|
{
|
|
|
|
label: 'File'
|
|
|
|
submenu: [
|
|
|
|
{ label: 'New Window', command: 'application:new-window' }
|
|
|
|
{ label: 'New File', command: 'application:new-file' }
|
|
|
|
{ label: 'Open...', command: 'application:open' }
|
2013-10-18 21:09:47 +04:00
|
|
|
{ label: 'Reopen Last Item', command: 'pane:reopen-closed-item' }
|
2013-10-04 23:28:19 +04:00
|
|
|
{ type: 'separator' }
|
2013-11-14 22:15:23 +04:00
|
|
|
{ label: 'Preferences...', command: 'application:show-settings' }
|
|
|
|
{ type: 'separator' }
|
2013-10-18 00:42:14 +04:00
|
|
|
{ label: 'Save', command: 'core:save' }
|
|
|
|
{ label: 'Save As...', command: 'core:save-as' }
|
|
|
|
{ label: 'Save All', command: 'window:save-all' }
|
|
|
|
{ type: 'separator' }
|
2013-10-18 21:09:47 +04:00
|
|
|
{ label: 'Close Buffer', command: 'core:close' }
|
|
|
|
{ label: 'Close All Buffers', command: 'pane:close' }
|
2013-10-04 23:28:19 +04:00
|
|
|
{ label: 'Close Window', command: 'window:close' }
|
2013-11-14 22:15:23 +04:00
|
|
|
{ type: 'separator' }
|
|
|
|
{ label: 'Exit', command: 'application:quit' }
|
2013-10-04 23:28:19 +04:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
label: 'Edit'
|
|
|
|
submenu: [
|
|
|
|
{ label: 'Undo', command: 'core:undo' }
|
|
|
|
{ label: 'Redo', command: 'core:redo' }
|
|
|
|
{ type: 'separator' }
|
|
|
|
{ label: 'Cut', command: 'core:cut' }
|
|
|
|
{ label: 'Copy', command: 'core:copy' }
|
2013-10-18 22:51:56 +04:00
|
|
|
{ label: 'Copy Path', command: 'editor:copy-path' }
|
2013-10-04 23:28:19 +04:00
|
|
|
{ label: 'Paste', command: 'core:paste' }
|
|
|
|
{ label: 'Select All', command: 'core:select-all' }
|
2013-10-18 00:42:14 +04:00
|
|
|
{ type: 'separator' }
|
2013-10-19 02:20:02 +04:00
|
|
|
{ label: 'Toggle Comments', command: 'editor:toggle-line-comments' }
|
2013-10-19 01:42:25 +04:00
|
|
|
{
|
|
|
|
label: 'Lines',
|
|
|
|
submenu: [
|
|
|
|
{ label: 'Indent', command: 'editor:indent-selected-rows' }
|
|
|
|
{ label: 'Outdent', command: 'editor:outdent-selected-rows' }
|
|
|
|
{ label: 'Auto Indent', command: 'editor:auto-indent' }
|
2013-10-19 02:20:02 +04:00
|
|
|
{ type: 'separator' }
|
2013-10-19 01:42:25 +04:00
|
|
|
{ label: 'Move Line Up', command: 'editor:move-line-up' }
|
|
|
|
{ label: 'Move Line Down', command: 'editor:move-line-down' }
|
|
|
|
{ label: 'Duplicate Line', command: 'editor:duplicate-line' }
|
|
|
|
{ label: 'Delete Line', command: 'editor:delete-line' }
|
|
|
|
{ label: 'Join Lines', command: 'editor:join-line' }
|
|
|
|
]
|
|
|
|
}
|
2013-10-19 02:20:02 +04:00
|
|
|
{
|
|
|
|
label: 'Text',
|
|
|
|
submenu: [
|
|
|
|
{ label: 'Upper Case', command: 'editor:upper-case' }
|
|
|
|
{ label: 'Lower Case', command: 'editor:lower-case' }
|
|
|
|
{ type: 'separator' }
|
|
|
|
{ label: 'Delete to End of Word', command: 'editor:delete-to-end-of-word' }
|
|
|
|
{ label: 'Delete Line', command: 'editor:delete-line' }
|
|
|
|
{ type: 'separator' }
|
|
|
|
{ label: 'Transpose', command: 'editor:transpose' }
|
|
|
|
]
|
|
|
|
}
|
|
|
|
{
|
|
|
|
label: 'Folding',
|
|
|
|
submenu: [
|
|
|
|
{ label: 'Fold', command: 'editor:fold-current-row' }
|
|
|
|
{ label: 'Unfold', command: 'editor:unfold-current-row' }
|
|
|
|
{ label: 'Unfold All', command: 'editor:unfold-all' }
|
|
|
|
{ type: 'separator' }
|
|
|
|
{ label: 'Fold All', command: 'editor:fold-all' }
|
|
|
|
{ label: 'Fold Level 1', command: 'editor:fold-at-indent-level-1' }
|
|
|
|
{ label: 'Fold Level 2', command: 'editor:fold-at-indent-level-2' }
|
|
|
|
{ label: 'Fold Level 3', command: 'editor:fold-at-indent-level-3' }
|
|
|
|
{ label: 'Fold Level 4', command: 'editor:fold-at-indent-level-4' }
|
|
|
|
{ label: 'Fold Level 5', command: 'editor:fold-at-indent-level-5' }
|
|
|
|
{ label: 'Fold Level 6', command: 'editor:fold-at-indent-level-6' }
|
|
|
|
{ label: 'Fold Level 7', command: 'editor:fold-at-indent-level-7' }
|
|
|
|
{ label: 'Fold Level 8', command: 'editor:fold-at-indent-level-8' }
|
|
|
|
{ label: 'Fold Level 9', command: 'editor:fold-at-indent-level-9' }
|
|
|
|
]
|
|
|
|
}
|
2013-10-04 23:28:19 +04:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2013-11-14 22:15:23 +04:00
|
|
|
{
|
|
|
|
label: 'View'
|
|
|
|
submenu: [
|
|
|
|
{ label: 'Reload', command: 'window:reload' }
|
|
|
|
{ label: 'Toggle Full Screen', command: 'window:toggle-full-screen' }
|
|
|
|
{
|
|
|
|
label: 'Developer'
|
|
|
|
submenu: [
|
|
|
|
{ label: 'Open In Dev Mode...', command: 'application:open-dev' }
|
|
|
|
{ label: 'Run Atom Specs', command: 'application:run-all-specs' }
|
|
|
|
{ label: 'Run Package Specs', command: 'window:run-package-specs' }
|
|
|
|
{ label: 'Toggle Developer Tools', command: 'window:toggle-dev-tools' }
|
|
|
|
]
|
|
|
|
}
|
|
|
|
{ type: 'separator' }
|
|
|
|
{ label: 'Toggle Soft Wrap', command: 'editor:toggle-soft-wrap' }
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2013-10-19 02:28:49 +04:00
|
|
|
{
|
|
|
|
label: 'Selection'
|
|
|
|
submenu: [
|
|
|
|
{ label: 'Add Selection Above', command: 'editor:add-selection-above' }
|
|
|
|
{ label: 'Add Selection Below', command: 'editor:add-selection-below' }
|
|
|
|
{ type: 'separator' }
|
|
|
|
{ label: 'Select to Top', command: 'core:select-to-top' }
|
|
|
|
{ label: 'Select to Bottom', command: 'core:select-to-bottom' }
|
|
|
|
{ type: 'separator' }
|
|
|
|
{ label: 'Select Line', command: 'editor:select-line' }
|
|
|
|
{ label: 'Select Word', command: 'editor:select-word' }
|
|
|
|
{ label: 'Select to Beginning of Word', command: 'editor:select-to-beginning-of-word' }
|
|
|
|
{ label: 'Select to Beginning of Line', command: 'editor:select-to-beginning-of-line' }
|
|
|
|
{ label: 'Select to First Character of Line', command: 'editor:select-to-first-character-of-line' }
|
|
|
|
{ label: 'Select to End of Word', command: 'editor:select-to-end-of-word' }
|
|
|
|
{ label: 'Select to End of Line', command: 'editor:select-to-end-of-line' }
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2013-10-23 03:00:32 +04:00
|
|
|
{
|
|
|
|
label: 'Movement'
|
|
|
|
submenu: [
|
|
|
|
{ label: 'Move to Top', command: 'core:move-to-top' }
|
|
|
|
{ label: 'Move to Bottom', command: 'core:move-to-bottom' }
|
|
|
|
{ type: 'separator' }
|
|
|
|
{ label: 'Move to Beginning of Line', command: 'editor:move-to-beginning-of-line' }
|
|
|
|
{ label: 'Move to First Character of Line', command: 'editor:move-to-first-character-of-line' }
|
|
|
|
{ label: 'Move to End of Line', command: 'editor:move-to-end-of-line' }
|
|
|
|
{ type: 'separator' }
|
|
|
|
{ label: 'Move to Beginning of Word', command: 'editor:move-to-beginning-of-word' }
|
|
|
|
{ label: 'Move to End of Word', command: 'editor:move-to-end-of-word' }
|
|
|
|
{ label: 'Move to Next Word', command: 'editor:move-to-next-word-boundary' }
|
|
|
|
{ label: 'Move to Previous Word', command: 'editor:move-to-previous-word-boundary' }
|
2013-10-04 23:28:19 +04:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2013-10-23 02:26:57 +04:00
|
|
|
{
|
|
|
|
label: 'Find'
|
|
|
|
submenu: []
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
label: 'Packages'
|
|
|
|
submenu: []
|
|
|
|
}
|
|
|
|
|
2013-10-04 23:28:19 +04:00
|
|
|
{
|
|
|
|
label: 'Window'
|
|
|
|
submenu: [
|
|
|
|
{ label: 'Minimize', command: 'application:minimize' }
|
|
|
|
{ label: 'Zoom', command: 'application:zoom' }
|
|
|
|
{ type: 'separator' }
|
|
|
|
{ label: 'Bring All to Front', command: 'application:bring-all-windows-to-front' }
|
|
|
|
]
|
|
|
|
}
|
2013-10-18 23:02:03 +04:00
|
|
|
|
|
|
|
{
|
|
|
|
label: 'Help'
|
|
|
|
submenu: [
|
2013-11-14 22:15:23 +04:00
|
|
|
{ label: 'About Atom', command: 'application:about' }
|
|
|
|
{ label: "VERSION", enabled: false }
|
|
|
|
{ label: "Install update", command: 'application:install-update', visible: false }
|
|
|
|
{ type: 'separator' }
|
2013-10-18 23:02:03 +04:00
|
|
|
{ label: 'Documentation', command: 'application:open-documentation' }
|
|
|
|
{ label: 'Report an Issue', command: 'application:report-issue' }
|
|
|
|
{ type: 'separator' }
|
|
|
|
]
|
|
|
|
}
|
2013-10-04 23:28:19 +04:00
|
|
|
]
|