atom-beautify/menus/atom-beautify.cson

32 lines
937 B
Plaintext
Raw Normal View History

# See https://atom.io/docs/latest/creating-a-package#menus for more details
'context-menu':
2015-04-16 04:43:20 -06:00
'atom-workspace atom-text-editor:not(.mini)': [
{label: 'Beautify editor contents', command: 'atom-beautify:beautify-editor'}
{label: 'Debug Atom Beautify', command: 'atom-beautify:help-debug-editor'}
2015-04-16 04:43:20 -06:00
]
'.tree-view .file > .name': [
{label: 'Beautify File', command: 'atom-beautify:beautify-file'}
2015-04-16 04:43:20 -06:00
]
# '.tree-view .directory > .header > .name': [
# {label: 'Beautify Directory', command: 'atom-beautify:beautify-directory'}
# ]
'menu': [
{
'label': 'Packages'
'submenu': [
'label': 'Atom Beautify'
'submenu': [
{
'label': 'Beautify'
'command': 'atom-beautify:beautify-editor'
}
{
'label': 'Debug'
'command': 'atom-beautify:help-debug-editor'
}
]
]
}
]