19 lines
512 B
Plaintext
19 lines
512 B
Plaintext
# See https://atom.io/docs/latest/creating-a-package#menus for more details
|
|
'context-menu':
|
|
'atom-workspace atom-text-editor:not(.mini)':
|
|
'Enable atom-beautify': 'beautify:beautify-editor'
|
|
'.tree-view .file > .name':
|
|
'Beautify File': 'beautify:beautify-file'
|
|
# '.tree-view .directory > .header > .name':
|
|
# 'Beautify Directory': 'beautify:beautify-directory'
|
|
|
|
'menu': [
|
|
{
|
|
'label': 'Packages'
|
|
'submenu': [
|
|
'label': 'Beautify'
|
|
'command': 'beautify:beautify-editor'
|
|
]
|
|
}
|
|
]
|