Debug Configs

This commit is contained in:
Josh Johnson 2015-11-22 01:48:40 -05:00
parent 704f6c9a36
commit 30e8222717
4 changed files with 49 additions and 1 deletions

View file

@ -1,7 +1,12 @@
'use strict';
import { ExtensionContext } from 'vscode';
import { commands, ExtensionContext } from 'vscode';
import { formatXml } from './features/xmlFormatting';
export function activate(ctx: ExtensionContext) {
// check for update
//...
// register pallete commands
ctx.subscriptions.push(commands.registerTextEditorCommand('xmltools.formatXml', formatXml));
}