Developing a legal IDE based on Atom
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.5 KiB

menu: [
label: 'Packages'
submenu: [
label: 'Markdown Preview'
submenu: [
{label: 'Toggle Preview', command: 'markdown-preview:toggle'}
{label: 'Toggle Break on Single Newline', command: 'markdown-preview:toggle-break-on-single-newline'}
{label: 'Toggle GitHub Style', command: 'markdown-preview:toggle-github-style'}
]
]
]
'context-menu':
'.markdown-preview': [
{label: 'Select All', command: 'markdown-preview:select-all'}
{label: 'Save As HTML\u2026', command: 'core:save-as'}
]
'.markdown-preview.has-selection': [
{label: 'Copy', command: 'core:copy'}
]
'.markdown-preview:not(.has-selection)': [
{label: 'Copy As HTML', command: 'core:copy'}
]
'.tree-view .file .name[data-name$=\\.markdown]':
[{label: 'Markdown Preview', command: 'markdown-preview:preview-file'}]
'.tree-view .file .name[data-name$=\\.md]':
[{label: 'Markdown Preview', command: 'markdown-preview:preview-file'}]
'.tree-view .file .name[data-name$=\\.mdown]':
[{label: 'Markdown Preview', command: 'markdown-preview:preview-file'}]
'.tree-view .file .name[data-name$=\\.mkd]':
[{label: 'Markdown Preview', command: 'markdown-preview:preview-file'}]
'.tree-view .file .name[data-name$=\\.mkdown]':
[{label: 'Markdown Preview', command: 'markdown-preview:preview-file'}]
'.tree-view .file .name[data-name$=\\.ron]':
[{label: 'Markdown Preview', command: 'markdown-preview:preview-file'}]
'.tree-view .file .name[data-name$=\\.txt]':
[{label: 'Markdown Preview', command: 'markdown-preview:preview-file'}]