pulsar/menus/win32.cson

226 lines
9.7 KiB
Plaintext
Raw Normal View History

2013-10-04 23:28:19 +04:00
'menu': [
{
label: '&File'
2013-10-04 23:28:19 +04:00
submenu: [
2013-11-15 01:25:58 +04:00
{ label: 'New &Window', command: 'application:new-window' }
{ label: '&New File', command: 'application:new-file' }
{ label: '&Open File…', command: 'application:open-file' }
{ label: 'Open Folder…', command: 'application:open-folder' }
{ label: 'Add Project Folder…', command: 'application:add-project-folder' }
2013-11-15 01:25:58 +04:00
{ label: 'Reopen Last &Item', command: 'pane:reopen-closed-item' }
2013-10-04 23:28:19 +04:00
{ type: 'separator' }
{ label: 'Se&ttings', command: 'application:show-settings' }
{ type: 'separator' }
{ label: 'Config…', command: 'application:open-your-config' }
{ label: 'Init Script…', command: 'application:open-your-init-script' }
{ label: 'Keymap…', command: 'application:open-your-keymap' }
{ label: 'Snippets…', command: 'application:open-your-snippets' }
{ label: 'Stylesheet…', command: 'application:open-your-stylesheet' }
{ type: 'separator' }
2013-11-15 01:25:58 +04:00
{ label: '&Save', command: 'core:save' }
{ label: 'Save &As…', command: 'core:save-as' }
2013-11-15 01:25:58 +04:00
{ label: 'Save A&ll', command: 'window:save-all' }
2013-10-18 00:42:14 +04:00
{ type: 'separator' }
{ label: '&Close Tab', command: 'core:close' }
{ label: 'Close &Pane', command: 'pane:close' }
2013-11-15 01:25:58 +04:00
{ label: 'Clos&e Window', command: 'window:close' }
{ type: 'separator' }
2013-11-15 01:25:58 +04:00
{ label: 'E&xit', command: 'application:quit' }
2013-10-04 23:28:19 +04:00
]
}
{
label: '&Edit'
2013-10-04 23:28:19 +04:00
submenu: [
2013-11-15 01:25:58 +04:00
{ label: '&Undo', command: 'core:undo' }
{ label: '&Redo', command: 'core:redo' }
2013-10-04 23:28:19 +04:00
{ type: 'separator' }
{ label: 'Cu&t', command: 'core:cut' }
{ label: '&Copy', command: 'core:copy' }
2013-11-15 01:25:58 +04:00
{ label: 'Copy Pat&h', command: 'editor:copy-path' }
{ label: '&Paste', command: 'core:paste' }
{ label: 'Select &All', command: 'core:select-all' }
2013-10-18 00:42:14 +04:00
{ type: 'separator' }
2013-11-15 01:25:58 +04:00
{ label: '&Toggle Comments', command: 'editor:toggle-line-comments' }
2013-10-19 01:42:25 +04:00
{
label: 'Lines',
submenu: [
2013-11-15 01:25:58 +04:00
{ 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-11-15 01:25:58 +04:00
{ label: 'Move Line &Up', command: 'editor:move-line-up' }
{ label: 'Move Line &Down', command: 'editor:move-line-down' }
2014-03-07 01:55:08 +04:00
{ label: 'Du&plicate Lines', command: 'editor:duplicate-lines' }
2013-11-15 01:25:58 +04:00
{ label: 'D&elete Line', command: 'editor:delete-line' }
{ label: '&Join Lines', command: 'editor:join-lines' }
2013-10-19 01:42:25 +04:00
]
}
2015-05-04 07:17:43 +03:00
{
label: 'Columns',
submenu: [
{ label: 'Move Selection &Left', command: 'editor:move-selection-left' }
{ label: 'Move Selection &Right', command: 'editor:move-selection-right' }
]
}
2013-10-19 02:20:02 +04:00
{
label: 'Text',
submenu: [
2013-11-15 01:25:58 +04:00
{ label: '&Upper Case', command: 'editor:upper-case' }
{ label: '&Lower Case', command: 'editor:lower-case' }
2013-10-19 02:20:02 +04:00
{ type: 'separator' }
2013-11-15 01:25:58 +04:00
{ label: 'Delete to End of &Word', command: 'editor:delete-to-end-of-word' }
2015-04-30 02:52:09 +03:00
{ label: 'Delete to Previous Word Boundary', command: 'editor:delete-to-previous-word-boundary' }
{ label: 'Delete to Next Word Boundary', command: 'editor:delete-to-next-word-boundary' }
2013-11-15 01:25:58 +04:00
{ label: '&Delete Line', command: 'editor:delete-line' }
2013-10-19 02:20:02 +04:00
{ type: 'separator' }
2013-11-15 01:25:58 +04:00
{ label: '&Transpose', command: 'editor:transpose' }
2013-10-19 02:20:02 +04:00
]
}
{
label: 'Folding',
submenu: [
2013-11-15 01:25:58 +04:00
{ label: '&Fold', command: 'editor:fold-current-row' }
{ label: '&Unfold', command: 'editor:unfold-current-row' }
{ label: 'Unfold &All', command: 'editor:unfold-all' }
2013-10-19 02:20:02 +04:00
{ type: 'separator' }
2013-11-15 01:25:58 +04:00
{ label: 'Fol&d All', command: 'editor:fold-all' }
2013-10-19 02:20:02 +04:00
{ 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
]
}
{
label: '&View'
submenu: [
2013-11-15 01:25:58 +04:00
{ label: 'Toggle &Full Screen', command: 'window:toggle-full-screen' }
2014-11-18 00:53:33 +03:00
{ label: 'Toggle Menu Bar', command: 'window:toggle-menu-bar' }
{
label: 'Panes'
submenu: [
{ label: 'Split Up', command: 'pane:split-up' }
{ label: 'Split Down', command: 'pane:split-down' }
{ label: 'Split Left', command: 'pane:split-left' }
{ label: 'Split Right', command: 'pane:split-right' }
{ type: 'separator' }
{ label: 'Focus Next Pane', command: 'window:focus-next-pane' }
{ label: 'Focus Previous Pane', command: 'window:focus-previous-pane' }
{ type: 'separator' }
{ label: 'Focus Pane Above', command: 'window:focus-pane-above' }
{ label: 'Focus Pane Below', command: 'window:focus-pane-below' }
{ label: 'Focus Pane On Left', command: 'window:focus-pane-on-left' }
{ label: 'Focus Pane On Right', command: 'window:focus-pane-on-right' }
{ type: 'separator' }
2014-11-11 01:23:06 +03:00
{ label: 'Close Pane', command: 'pane:close' }
]
}
{
label: 'Developer'
submenu: [
{ label: 'Open In &Dev Mode…', command: 'application:open-dev' }
{ label: '&Reload Window', command: 'window:reload' }
2013-11-15 01:25:58 +04:00
{ label: 'Run Package &Specs', command: 'window:run-package-specs' }
{ label: 'Toggle Developer &Tools', command: 'window:toggle-dev-tools' }
]
}
{ type: 'separator' }
2015-04-27 06:52:48 +03:00
{ label: '&Increase Font Size', command: 'window:increase-font-size' }
{ label: '&Decrease Font Size', command: 'window:decrease-font-size' }
2015-04-27 20:21:09 +03:00
{ label: 'Re&set Font Size', command: 'window:reset-font-size' }
2015-04-27 06:52:48 +03:00
{ type: 'separator' }
{ label: 'Toggle Soft &Wrap', command: 'editor:toggle-soft-wrap' }
]
}
2013-10-19 02:28:49 +04:00
{
label: '&Selection'
2013-10-19 02:28:49 +04:00
submenu: [
2013-11-15 01:25:58 +04:00
{ label: 'Add Selection &Above', command: 'editor:add-selection-above' }
{ label: 'Add Selection &Below', command: 'editor:add-selection-below' }
2014-01-09 03:45:09 +04:00
{ label: 'S&plit into Lines', command: 'editor:split-selections-into-lines'}
2014-06-18 01:42:57 +04:00
{ label: 'Single Selection', command: 'editor:consolidate-selections'}
2013-10-19 02:28:49 +04:00
{ type: 'separator' }
2013-11-15 01:25:58 +04:00
{ label: 'Select to &Top', command: 'core:select-to-top' }
{ label: 'Select to Botto&m', command: 'core:select-to-bottom' }
2013-10-19 02:28:49 +04:00
{ type: 'separator' }
2013-11-15 01:25:58 +04:00
{ label: 'Select &Line', command: 'editor:select-line' }
{ label: 'Select &Word', command: 'editor:select-word' }
{ label: 'Select to Beginning of W&ord', command: 'editor:select-to-beginning-of-word' }
{ label: 'Select to Beginning of L&ine', 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 Wor&d', command: 'editor:select-to-end-of-word' }
{ label: 'Select to End of Lin&e', command: 'editor:select-to-end-of-line' }
2013-10-19 02:28:49 +04:00
]
}
{
label: 'F&ind'
submenu: []
}
{
label: '&Packages'
submenu: []
}
2013-10-18 23:02:03 +04:00
{
label: '&Help'
2013-10-18 23:02:03 +04:00
submenu: [
2014-05-14 21:44:33 +04:00
{ label: 'View &Terms of Use', command: 'application:open-terms-of-use' }
{ label: 'View &License', command: 'application:open-license' }
2014-11-14 04:37:29 +03:00
{ label: 'VERSION', enabled: false }
2014-11-20 00:55:10 +03:00
{ label: 'Restart and Install Update', command: 'application:install-update', visible: false}
{ label: 'Check for Update', command: 'application:check-for-update', visible: false}
{ label: 'Checking for Update', enabled: false, visible: false}
2014-11-20 00:55:10 +03:00
{ label: 'Downloading Update', enabled: false, visible: false}
{ type: 'separator' }
2013-11-15 01:25:58 +04:00
{ label: '&Documentation', command: 'application:open-documentation' }
2014-10-29 19:31:53 +03:00
{ label: 'Frequently Asked Questions', command: 'application:open-faq' }
2014-10-30 19:09:44 +03:00
{ type: 'separator' }
{ label: 'Community Discussions', command: 'application:open-discussions' }
2014-10-29 19:31:53 +03:00
{ label: 'Report Issue', command: 'application:report-issue' }
2014-10-30 19:06:54 +03:00
{ label: 'Search Issues', command: 'application:search-issues' }
2013-10-18 23:02:03 +04:00
{ type: 'separator' }
2015-06-23 01:02:43 +03:00
{ label: 'About Atom', command: 'application:about' }
{ type: 'separator' }
2013-10-18 23:02:03 +04:00
]
}
2013-10-04 23:28:19 +04:00
]
'context-menu':
'atom-text-editor, .overlayer': [
2014-09-30 02:32:50 +04:00
{label: 'Undo', command: 'core:undo'}
{label: 'Redo', command: 'core:redo'}
{type: 'separator'}
{label: 'Cut', command: 'core:cut'}
{label: 'Copy', command: 'core:copy'}
{label: 'Paste', command: 'core:paste'}
{label: 'Delete', command: 'core:delete'}
{label: 'Select All', command: 'core:select-all'}
{type: 'separator'}
{label: 'Split Up', command: 'pane:split-up'}
{label: 'Split Down', command: 'pane:split-down'}
{label: 'Split Left', command: 'pane:split-left'}
{label: 'Split Right', command: 'pane:split-right'}
{label: 'Close Pane', command: 'pane:close'}
2014-09-30 02:32:50 +04:00
{type: 'separator'}
]
'atom-pane': [
{type: 'separator'}
{label: 'Split Up', command: 'pane:split-up'}
{label: 'Split Down', command: 'pane:split-down'}
{label: 'Split Left', command: 'pane:split-left'}
{label: 'Split Right', command: 'pane:split-right'}
{label: 'Close Pane', command: 'pane:close'}
{type: 'separator'}
]