From 04b11bea3ba191a3666577253a08c9bbe2848437 Mon Sep 17 00:00:00 2001 From: Josh Johnson Date: Tue, 16 Feb 2016 18:42:43 -0500 Subject: [PATCH] Correct Command Registration --- src/Extension.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Extension.ts b/src/Extension.ts index 4e23127..9d4c562 100644 --- a/src/Extension.ts +++ b/src/Extension.ts @@ -25,7 +25,7 @@ export function activate(ctx: vsc.ExtensionContext) { vsc.commands.registerTextEditorCommand('xmlTools.minifyXml', TextEditorCommands.minifyXml), vsc.commands.registerTextEditorCommand('xmlTools.evaluateXPath', TextEditorCommands.evaluateXPath), vsc.commands.registerTextEditorCommand('xmlTools.executeXQuery', TextEditorCommands.executeXQuery), - vsc.commands.registerTextEditorCommand('xmlTools.viewXmlTree', TextEditorCommands.viewXmlAsTree) + vsc.commands.registerTextEditorCommand('xmlTools.viewXmlTree', TextEditorCommands.viewXmlTree) ); // register language feature providers