diff --git a/lib/beautify.coffee b/lib/beautify.coffee index e543eb1..9ac7737 100644 --- a/lib/beautify.coffee +++ b/lib/beautify.coffee @@ -358,6 +358,6 @@ plugin.activate = -> handleSaveEvent() plugin.subscribe atom.config.observe("atom-beautify.beautifyOnSave", handleSaveEvent) atom.commands.add "atom-workspace", "beautify:beautify-editor", beautify - atom.commands.add "atom-workspace", "beautify:debug", debug + atom.commands.add "atom-workspace", "beautify:help-debug-editor", debug atom.commands.add ".tree-view .file .name", "beautify:beautify-file", beautifyFile atom.commands.add ".tree-view .directory .name", "beautify:beautify-directory", beautifyDirectory diff --git a/menus/atom-beautify.cson b/menus/atom-beautify.cson index 912eacb..526d6ff 100644 --- a/menus/atom-beautify.cson +++ b/menus/atom-beautify.cson @@ -2,7 +2,7 @@ 'context-menu': 'atom-workspace atom-text-editor:not(.mini)': 'Beautify editor contents': 'beautify:beautify-editor' - 'Debug Atom Beautify': 'beautify:debug' + 'Debug Atom Beautify': 'beautify:help-debug-editor' '.tree-view .file > .name': 'Beautify File': 'beautify:beautify-file' # '.tree-view .directory > .header > .name': @@ -20,7 +20,7 @@ } { 'label': 'Debug' - 'command': 'beautify:debug' + 'command': 'beautify:help-debug-editor' } ] ] diff --git a/package.json b/package.json index aaa6d88..d72d889 100644 --- a/package.json +++ b/package.json @@ -71,8 +71,8 @@ }, "activationCommands": { "atom-workspace": [ + "beautify:help-debug-editor", "beautify:beautify-editor", - "beautify:debug", "core:save", "core:save-as" ],