From de405880fdecd8394aeaf13d98ad7194b3710e9c Mon Sep 17 00:00:00 2001 From: Glavin Wiechert Date: Mon, 18 May 2015 15:50:35 -0300 Subject: [PATCH] Closes #332. Remove deprecated "Beautify: Beautify Editor" command --- package.json | 1 - src/beautify.coffee | 5 ----- 2 files changed, 6 deletions(-) diff --git a/package.json b/package.json index 99de8af..cc8fc02 100644 --- a/package.json +++ b/package.json @@ -81,7 +81,6 @@ "atom-workspace": [ "atom-beautify:help-debug-editor", "atom-beautify:beautify-editor", - "beautify:beautify-editor", "core:save", "core:save-as" ], diff --git a/src/beautify.coffee b/src/beautify.coffee index 50562d2..a6c8f66 100644 --- a/src/beautify.coffee +++ b/src/beautify.coffee @@ -449,8 +449,3 @@ plugin.activate = -> atom.commands.add "atom-workspace", "atom-beautify:help-debug-editor", debug atom.commands.add ".tree-view .file .name", "atom-beautify:beautify-file", beautifyFile atom.commands.add ".tree-view .directory .name", "atom-beautify:beautify-directory", beautifyDirectory - - - # Deprecated command - atom.commands.add "atom-workspace", "beautify:beautify-editor", -> - atom?.notifications.addWarning("The command \"beautify:beautify-editor\" has been removed and changed to \"atom-beautify:beautify-editor\".", dismissable : true)