This commit is contained in:
Josh Johnson 2015-11-24 13:50:51 -05:00
parent 021b5000c4
commit 966ab047ef
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ export function activate(ctx: ExtensionContext) {
// check for update // check for update
//... //...
// register pallete commands // register palette commands
ctx.subscriptions.push(commands.registerTextEditorCommand('xmltools.formatXml', formatXml)); ctx.subscriptions.push(commands.registerTextEditorCommand('xmltools.formatXml', formatXml));
ctx.subscriptions.push(commands.registerTextEditorCommand('xmltools.linearizeXml', linearizeXml)); ctx.subscriptions.push(commands.registerTextEditorCommand('xmltools.linearizeXml', linearizeXml));
ctx.subscriptions.push(commands.registerTextEditorCommand('xmltools.evaluateXPath', evaluateXPath)); ctx.subscriptions.push(commands.registerTextEditorCommand('xmltools.evaluateXPath', evaluateXPath));